我想编译Xmega_bootloader
但是当我开始 make 时,我收到此错误:
[arkadi@arkadi-linux /home/arkadi/Xmega_Bootloader $]make
avr-gcc -mmcu=atxmega64a3u -Wall -gdwarf-2 -std=gnu99 -DF_CPU=2000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -DBOOT_PAGE_SIZE=256 -DAPP_PAGE_SIZE=256 -DMCU=atxmega64a3u -DBAUD_RATE=115200 -DMY_UART=C,0 -DENTER_BOOTLOADER_PIN=B,2 -DLED_PIN=D,2 -DLED_ON=0 -DBOOTLOADER_PIN_EN=0 -MD -MP -MT sp_driver.o -x assembler-with-cpp -Wa,-gdwarf2 -c sp_driver.s
sp_driver.s:69:20: fatal error: avr\io.h: No such file or directory
#include <avr\io.h>
^
compilation terminated.
makefile:374: recipe for target 'sp_driver.o' failed
make: *** [sp_driver.o] Error 1
我正在奔跑
Linux arkadi-linux 4.0.7-2-ARCH #1 SMP PREEMPT Tue Jun 30 07:50:21 UTC 2015 x86_64 GNU/Linux
我已经安装了 avr-gcc 和 avr-libc。
问题是什么?
答案1
我的问题是我在代码中使用了“\”。
在 Linux 中它必须是 '/' ,因此为了使代码可移植,该行必须是:
#include <avr/io.h>