Differences between revisions 1 and 2
Revision 1 as of 2023-05-21 21:08:14
Size: 854
Comment:
Revision 2 as of 2023-05-21 21:08:48
Size: 879
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

<<TableOfContents()>>

SP Flash Tool Errors

ERROR : STATUS_ERR (-1073676287) , MSP ERROE CODE : 0x00. [HINT]:

This error is occurring because SP Flash Tool is not given permission to access the usb port. Follow these directions.

sudo nano /etc/udev/rules.d/53-android.rules

Add These Lines and save:
        SUBSYSTEM=="usb", SYSFS{idVendor}=="0e8d", MODE="0666"
        SUBSYSTEM=="usb", ATTR{idVendor}="0e8d", ATTR{idProduct}="20ff",

sudo nano /etc/udev/rules.d/53-MTKinc.rules

Add These lines and save:
SUBSYSTEM=="usb", SYSFS{idVendor}=="0e8d", MODE="0666"
        SUBSYSTEM=="usb", ATTR{idVendor}="0e8d", ATTR{idProduct}="20ff", SYMLINK+="android_adb"
        KERNEL=="ttyACM*", MODE="0666"

sudo chmod a+rx /etc/udev/rules.d/53-android.rules
sudo chmod a+rx /etc/udev/rules.d/53-MTKinc.rules
sudo /etc/init.d/udev restart

AndroidDevelopment/Tools/SPFlashToolErrors (last edited 2024-09-01 19:17:27 by rumplestilzken)