首页 > 代码库 > 为Atmega328P定制bootloader 添加自己的板卡到Arduino IDE

为Atmega328P定制bootloader 添加自己的板卡到Arduino IDE

当参照Arduino官方的电路设计自己做板卡的时候,Arduino官方提供的bootloader可能无法满足需求,要定制自己的bootloader,下面就是具体步骤

1. 生成自己的bootloader: [这里使用的是optiboot, in arduino-1.0.5-r2, by aka WestfW]

在 arduino-1.0.5-r2\hardware\arduino\bootloaders\optiboot 目录的makefile中找到:

atmega328: TARGET = atmega328atmega328: MCU_TARGET = atmega328patmega328: CFLAGS += -DLED_START_FLASHES=3 -DBAUD_RATE=115200atmega328: AVR_FREQ = 16000000Latmega328: LDSECTIONS  = -Wl,--section-start=.text=0x7e00 -Wl,--section-start=.version=0x7ffeatmega328: $(PROGRAM)_atmega328.hexatmega328: $(PROGRAM)_atmega328.lstatmega328_isp: atmega328atmega328_isp: TARGET = atmega328atmega328_isp: MCU_TARGET = atmega328p# 512 byte boot, SPIENatmega328_isp: HFUSE = DE# Low power xtal (16MHz) 16KCK/14CK+65msatmega328_isp: LFUSE = FF# 2.7V brownoutatmega328_isp: EFUSE = 05atmega328_isp: isp

紧随其后添加如下内容:

# Atmega328p target 16Mhz for DIY Board with baud rate 14400atmega328DIY: TARGET = atmega328p_DIYatmega328DIY: MCU_TARGET = atmega328patmega328DIY: CFLAGS += -DLED_START_FLASHES=3 -DBAUD_RATE=14400atmega328DIY: AVR_FREQ = 16000000Latmega328DIY: LDSECTIONS  = -Wl,--section-start=.text=0x7e00 -Wl,--section-start=.version=0x7ffeatmega328DIY: $(PROGRAM)_atmega328DIY.hexatmega328DIY: $(PROGRAM)_atmega328DIY.lstatmega328DIY_isp: atmega328atmega328DIY_isp: TARGET = atmega328p_DIYatmega328DIY_isp: MCU_TARGET = atmega328p# 512 byte boot, SPIENatmega328DIY_isp: HFUSE = DE# Low power xtal (16MHz) 16KCK/14CK+65msatmega328DIY_isp: LFUSE = FF# 2.7V brownoutatmega328DIY_isp: EFUSE = 05atmega328DIY_isp: isp

在目录arduino-1.0.5-r2\hardware\arduino\bootloaders\optiboot\中,执行命令:

omake atmega328DIY

这样,就在optiboot目录中生成文件:optiboot_atmega328DIY.hex,optiboot_atmega328DIY.lst, hex 文件即为atmega328p所需要的bootloader。

 

在  中的boards.txt找到

##############################################################uno.name=Arduino Unouno.upload.protocol=arduinouno.upload.maximum_size=32256uno.upload.speed=115200uno.bootloader.low_fuses=0xffuno.bootloader.high_fuses=0xdeuno.bootloader.extended_fuses=0x05uno.bootloader.path=optibootuno.bootloader.file=optiboot_atmega328.hexuno.bootloader.unlock_bits=0x3Funo.bootloader.lock_bits=0x0Funo.build.mcu=atmega328puno.build.f_cpu=16000000Luno.build.core=arduinouno.build.variant=standard##############################################################

紧随其后,添加如下内容:

##############################################################DIYBoard.name=Arduino DIYBoardDIYBoard.upload.protocol=arduinoDIYBoard.upload.maximum_size=32256DIYBoard.upload.speed=115200DIYBoard.bootloader.low_fuses=0xffDIYBoard.bootloader.high_fuses=0xdeDIYBoard.bootloader.extended_fuses=0x05DIYBoard.bootloader.path=optibootDIYBoard.bootloader.file=optiboot_atmega328DIY.hexDIYBoard.bootloader.unlock_bits=0x3FDIYBoard.bootloader.lock_bits=0x0FDIYBoard.build.mcu=atmega328pDIYBoard.build.f_cpu=16000000LDIYBoard.build.core=arduinoDIYBoard.build.variant=standard##############################################################

重启IDE后,就可以看到相应的板卡了

 

最后,就可以在IDE中选择自己的板卡及其相应的串口号,使用ISP下载bootloader到Atmega328p中。

 

完成。

 

主要参考资料:http://www.geek-workshop.com/thread-1535-1-1.html 【作者:zcbzjx】

为Atmega328P定制bootloader 添加自己的板卡到Arduino IDE