2018年5月28日 星期一

CC2640: Merge app and stack hex file

1. Install Python2.7
2. Open cmd.exe type > pip install intelhex
 






3. Use below instruction to merge your hex file
python C:\Python27\Scripts\hexmerge.py -o .\SOMETHING_MERGED.hex -r 0000:1FFFF .\SOMETHING_APP.hex:0000:1FFFF .\SOMETHING_STACK.hex --overlap=error
view raw gistfile1.txt hosted with ❤ by GitHub

沒有留言:

張貼留言

Linux driver: How to enable dynamic debug at booting time for built-in driver.

 Dynamic debug is useful for debug driver, and can be enable by: 1. Mount debug fs #>mount -t debugfs none /sys/kernel/debug 2. Enable dy...