1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

waspmote-pro: configure BOOTLOADER_SIZE

Size is from Francisco knowledge on stk500v1.
This commit is contained in:
cladmi 2018-08-16 19:15:05 +02:00
parent 109467d881
commit 3bf71959d7
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -1,6 +1,12 @@
# define the cpu used by the waspmote pro board
export CPU = atmega1281
# Bootloader uses stk500v1 protocol, which usually is implemented in
# bootloaders of 2K size.
# http://www.libelium.com/products/waspmote/hardware/
BOOTLOADER_SIZE ?= 2K
ROM_RESERVED ?= $(BOOTLOADER_SIZE)
# configure the terminal program
PORT_LINUX ?= /dev/ttyACM0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))