Overcurrent

I seem to get over-current warnings anytime I put a little stress on the system. Running Yolo ect the system puts out constant warnings even after initial app startup. My question is this due to the power supply not supplying enough amps? Would I get rid of this with a better power-supply say a modified “to have the correct barrel jack” Dell 19.5v 3.4 amp laptop power supplies I have. FYI Warnings are turned off here or they would be overlaying jtop.

see the discussion here system-throttling-due-to-over-current. It’s still under investigation.

There is also a potential workaround here

1 Like

Interesting. Same with sudo

echo 5000 > /sys/devices/c250000.i2c/i2c-7/7-0040/iio:device0/crit_current_limit_0
bash: /sys/devices/c250000.i2c/i2c-7/7-0040/iio:device0/crit_current_limit_0: Permission denied

You may try:

sudo sh -c 'echo 5000 > /sys/devices/c250000.i2c/i2c-7/7-0040/iio:device0/crit_current_limit_0'

This is for NX.

You need to change permissions first.
sudo chmod 666 crit_current_limit_0

Thank YouAll!