You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ make clean all
...
Run gen_appbin.py
sh: xt-nm: command not found
no entry point!!
mv: rename eagle.app.flash.bin to firmware/eagle.flash.bin: No such file or directory
make: *** [build/app.out] Error 1
When looking at gen_appbin.py we see the following code:
So we need to export COMPILE='gcc' to use the proper tool.
$ make clean all
...
Run gen_appbin.py
No boot needed.
Generate eagle.flash.bin and eagle.irom0text.bin successully in folder firmware
eagle.flash.bin-------->0x00000
eagle.irom0text.bin---->0x10000
Done
Another way is to remove line 151, 153 and 154 to not bother at all.
The text was updated successfully, but these errors were encountered:
When looking at
gen_appbin.py
we see the following code:So we need to
export COMPILE='gcc'
to use the proper tool.Another way is to remove line 151, 153 and 154 to not bother at all.
The text was updated successfully, but these errors were encountered: