Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use correct prefix on ATmega2561 fuse definitions #155

Merged
merged 1 commit into from
Feb 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use correct prefix on ATmega2561 fuse definitions
The "0" in the "0b" binary literal prefix was missing from the ATmega2561 fuse values.
  • Loading branch information
per1234 authored Feb 7, 2021
commit ff5476b67e2ba50e457043b1106bb73cc260ab1a
6 changes: 3 additions & 3 deletions avr/boards.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,21 +59,21 @@ menu.bootloader=Bootloader
2561.menu.bootloader.uart0.upload.protocol=arduino
2561.menu.bootloader.uart0.upload.port=UART0
2561.menu.bootloader.uart0.build.export_merged_output=true
2561.menu.bootloader.uart0.bootloader.high_fuses=b1101{bootloader.eesave_bit}110
2561.menu.bootloader.uart0.bootloader.high_fuses=0b1101{bootloader.eesave_bit}110
2561.menu.bootloader.uart0.bootloader.file=optiboot_flash/bootloaders/{build.mcu}/{build.clock_speed}/optiboot_flash_{build.mcu}_{upload.port}_{upload.speed}_{build.clock_speed}_{build.bootloader_led}_BIGBOOT.hex

2561.menu.bootloader.uart1=Yes (UART1)
2561.menu.bootloader.uart1.upload.maximum_size=261120
2561.menu.bootloader.uart1.upload.protocol=arduino
2561.menu.bootloader.uart1.upload.port=UART1
2561.menu.bootloader.uart1.build.export_merged_output=true
2561.menu.bootloader.uart1.bootloader.high_fuses=b1101{bootloader.eesave_bit}110
2561.menu.bootloader.uart1.bootloader.high_fuses=0b1101{bootloader.eesave_bit}110
2561.menu.bootloader.uart1.bootloader.file=optiboot_flash/bootloaders/{build.mcu}/{build.clock_speed}/optiboot_flash_{build.mcu}_{upload.port}_{upload.speed}_{build.clock_speed}_{build.bootloader_led}_BIGBOOT.hex

2561.menu.bootloader.no_bootloader=No bootloader
2561.menu.bootloader.no_bootloader.upload.maximum_size=262144
2561.menu.bootloader.no_bootloader.build.export_merged_output=false
2561.menu.bootloader.no_bootloader.bootloader.high_fuses=b1101{bootloader.eesave_bit}111
2561.menu.bootloader.no_bootloader.bootloader.high_fuses=0b1101{bootloader.eesave_bit}111
2561.menu.bootloader.no_bootloader.bootloader.file=empty/empty.hex

# EEPROM
Expand Down