I click the button that says “25W” at the top of the screen and then select Power Mode→ “MAXN SUPER.” Immediately a dialog opens saying “Warning - System reboot is required to apply changes. Do you want to reboot now?’ with options for OK and Cancel. Even after I reboot, the system is still in 25W mode.
*** Please note that this reply is generated by LLM automatically ***
The issue you’re experiencing with your Jetson Orin Nano seems to be related to the power mode not changing even after rebooting the system. Here are a few potential causes and solutions:
Power Mode Configuration: Ensure that you’re selecting the correct power mode from the dropdown menu. In your case, you’re trying to switch to MAXN_SUPER, which requires a minimum of 8.0V to the VDD_IN pins (as mentioned in the documentation). Verify that your power supply meets this requirement.
nvpmodel Configuration File: The power mode details for your device are stored in the /etc/nvpmodel.conf file. You can try editing this file manually to set the desired power mode. However, be cautious when making changes to system configuration files, as incorrect settings can cause system instability.
System Reboot: Although you’ve mentioned that you’ve rebooted the system, try performing a power cycle (turning off the power supply, waiting for a few seconds, and then turning it back on) to ensure that the system is fully reset.
Firmware or Software Issues: It’s possible that there’s a firmware or software issue preventing the power mode from changing. Check for any updates to the Jetson Orin Nano’s firmware or software, and apply them if available.
Hardware Issues: If none of the above solutions work, it’s possible that there’s a hardware issue with your Jetson Orin Nano. Try using a different power supply or checking the VDD_IN pins for any damage or corrosion.
In comparison to other Jetson models, the Jetson Orin Nano has similar power management features, but the specific power modes and requirements may vary. The MAXN_SUPER power mode, in particular, is mentioned in the documentation as requiring a minimum of 8.0V to the VDD_IN pins, which is specific to the Jetson Orin NX.
To troubleshoot the issue further, you can try checking the system logs for any error messages related to power mode changes. Additionally, you can try using the nvpmodel command-line tool to set the power mode manually and see if that resolves the issue.
Example usage of the nvpmodel command:
sudo nvpmodel -m <mode>
Replace <mode> with the desired power mode (e.g., MAXN_SUPER, 15W, or 7W).
If none of these solutions work, you may want to consider seeking further assistance from NVIDIA support or the Jetson Orin Nano community forums.
*** Please give the thumbs up if you get answers you like. Or provide feedback to help us improve the answer. ***