$ git clone https://github.com/acassis/incubator-nuttx
$ git remote add upstream git@github.com:apache/incubator-nuttx.git
$ git pull upstream master
$ git checkout -b upstream upstream/master
$ git push origin master
a blog about computers and other funny things
Month: March 2020
$ git clone https://github.com/acassis/incubator-nuttx
$ git remote add upstream git@github.com:apache/incubator-nuttx.git
$ git pull upstream master
$ git checkout -b upstream upstream/master
$ git push origin master
Good example:
The normal process works like this:
$ adb devices
$ adb shell
cv109:/ $ pm list packages
package:com.lge.theme.superbatterysaving
package:com.hy.system.fontserver
package:com.android.LGSetupWizard
package:com.android.cts.priv.ctsshim
package:com.google.android.youtube
…
cv109:/ $ pm uninstall com.claroColombia.contenedor
Success
cv109:/ $
cv109:/ $ pm uninstall com.claroColombia.contenedor
Success
cv109:/ $
cv109:/ $ pm uninstall -k com.lge.gametuner
Failure [DELETE_FAILED_INTERNAL_ERROR]
You can try modify your phone Settings -> Security -> Device Administrador and Disable Find my Device and Google Pay. Doing it didn’t work for me.
Hopefully I found a solution here:
https://stackoverflow.com/questions/13534935/adb-uninstall-failed/48083849
cv109:/ $ pm uninstall –user 0 com.lge.music
Success
cv109:/ $
TinEye:
tineye.com
I think J-Link is a good debugger, but sometimes is doesn’t work well on some boards. It was working fine to program Arduino M0, but start to present errors recently:
J-Link>con
Specify target interface speed [kHz]. : 4000 kHz
Speed>1000
Device “ATSAML21G18” selected.
Connecting to target via SWD
InitTarget()
Found SW-DP with ID 0x0BC11477
Scanning AP map to find all available APs
AP[1]: Stopped AP scan as end of AP map has been reached
AP[0]: AHB-AP (IDR: 0x04770031)
Iterating through AP map to find AHB-AP to use
AP[0]: Core found
AP[0]: AHB-AP ROM base: 0x41003000
CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
Found Cortex-M0 r0p1, Little endian.
FPUnit: 4 code (BP) slots and 0 literal slots
CoreSight components:
ROMTbl[0] @ 41003000
ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM Table
ROMTbl[1] @ E00FF000
ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB
ROMTbl[0][1]: 41006000, CID: B105900D, PID: 001BB932 MTB-M0+
Cortex-M0 identified.
J-Link>loadbin nuttx.bin 0
Halting CPU for downloading file.
Downloading file [nuttx.bin]…
Comparing flash [100%] Done.
Erasing flash [100%] Done.
Programming flash [100%] Done.
Verifying flash [100%] Done.
Error while programming flash: Programming failed.
J-Link>erase
Target connection not established yet but required for command.
Please specify device / core. : ATSAML21G18
Type ‘?’ for selection dialog
Device>
Device “ATSAML21G18” selected.
Connecting to target via SWD
InitTarget()
Found SW-DP with ID 0x0BC11477
AP map detection skipped. Manually configured AP map found.
AP[0]: AHB-AP (IDR: Not set)
AP[0]: Core found
AP[0]: AHB-AP ROM base: 0x41003000
CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
Found Cortex-M0 r0p1, Little endian.
FPUnit: 4 code (BP) slots and 0 literal slots
CoreSight components:
ROMTbl[0] @ 41003000
ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM Table
ROMTbl[1] @ E00FF000
ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB
ROMTbl[0][1]: 41006000, CID: B105900D, PID: 001BB932 MTB-M0+
Cortex-M0 identified.
Erasing device…
Erasing flash [100%] Done.
Verifying flash [100%] Done.
J-Link: Flash download: Total time needed: 0.932s (Prepare: 0.141s, Compare: 0.000s, Erase: 0.698s, Program: 0.000s, Verify: 0.000s, Restore: 0.091s)
Erasing flash [100%] Done.
Verifying flash [100%] Done.
J-Link: Flash download: Total time needed: 0.130s (Prepare: 0.087s, Compare: 0.000s, Erase: 0.002s, Program: 0.000s, Verify: 0.000s, Restore: 0.040s)
Erasing done.
J-Link>exit
J-Link>loadbin nuttx.bin 0
Downloading file [nuttx.bin]…
Erasing flash [100%] Done.
Programming flash [100%] Done.
Verifying flash [100%] Done.
Error while programming flash: Programming failed.
J-Link>
But “hopefully” I’m not the only one to face this same issue:
$ arm-linux-gnueabihf-gcc -c bsd-openpty.c -o bsd-openpty.o
$ arm-linux-gnueabihf-gcc -c common.c -o common.o
$ arm-linux-gnueabihf-gcc -c interceptty.c -o interceptty.o
$ arm-linux-gnueabihf-gcc bsd-openpty.o common.o interceptty.o -o interceptty -lutil