foldedtoad / dwm3000

Port of Qorvo/Decawave's DWM3000 Module on the DWS3000 Arduino Shield
GNU General Public License v3.0
83 stars 16 forks source link

EVK3000_F429 Can not be compiled #8

Open ramenia opened 2 years ago

ramenia commented 2 years ago

Hi, I am trying to compile example project but i am having make file error. arm-none-eabi-objcopy -O binary "DW3000_API_CubeMX.elf" "DW3000_API_CubeMX.bin" arm-none-eabi-size "DW3000_API_CubeMX.bin" arm-none-eabi-size: DW3000_API_CubeMX.bin: file format not recognized make[1]: *** [makefile:135: post-build] Error 3 make: *** [makefile:102: all] Error 2 "make all" terminated with exit code 2. Build might be incomplete.

schneidersoft commented 2 years ago

arm-none-eabi-size does not work on binaries. It takes an object file as input and lists the section sizes. try: arm-none-eabi-size "DW3000_API_CubeMX.elf"