Add smaller AVR8 targets to the Mass Storage bootloader target list in the Bootloader build test.

pull/1469/head
Dean Camera 12 years ago
parent 04feb435ed
commit 54e46d7818

@ -69,11 +69,13 @@ void Application_Jump_Check(void)
/* Enable pull-up on the IO13 pin so we can use it to select the mode */ /* Enable pull-up on the IO13 pin so we can use it to select the mode */
PORTC |= (1 << 7); PORTC |= (1 << 7);
Delay_MS(10); Delay_MS(10);
/* If IO13 is not jumpered to ground, start the user application instead */
JumpToApplication |= ((PINC & (1 << 7)) != 0); JumpToApplication |= ((PINC & (1 << 7)) != 0);
PORTC &= ~(1 << 7);
#endif
#if ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1)) /* Disable pull-up after the check has completed */
PORTC &= ~(1 << 7);
#elif ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
/* Disable JTAG debugging */ /* Disable JTAG debugging */
JTAG_DISABLE(); JTAG_DISABLE();

@ -116,7 +116,6 @@ HID = AVR8 : at90usb162 : NONE : 16 : 2 : 16 :
HID = AVR8 : at90usb162 : NONE : 16 : 4 : 16 : HID = AVR8 : at90usb162 : NONE : 16 : 4 : 16 :
# #
# ---------- Printer Bootloader ------------------ # ---------- Printer Bootloader ------------------
Printer = AVR8 : at90usb1287 : XPLAIN : 128 : 8 : 8 :
Printer = AVR8 : at90usb1287 : NONE : 128 : 8 : 8 : Printer = AVR8 : at90usb1287 : NONE : 128 : 8 : 8 :
Printer = AVR8 : at90usb1287 : NONE : 128 : 4 : 8 : Printer = AVR8 : at90usb1287 : NONE : 128 : 4 : 8 :
Printer = AVR8 : at90usb647 : NONE : 64 : 4 : 8 : Printer = AVR8 : at90usb647 : NONE : 64 : 4 : 8 :
@ -147,7 +146,26 @@ Printer = AVR8 : at90usb82 : NONE : 8 : 4 : 16 :
# ---------- Mass Storage Bootloader ----------------- # ---------- Mass Storage Bootloader -----------------
MassStorage = AVR8 : at90usb1287 : XPLAIN : 128 : 8 : 8 : MassStorage = AVR8 : at90usb1287 : XPLAIN : 128 : 8 : 8 :
MassStorage = AVR8 : at90usb1287 : NONE : 128 : 8 : 8 : MassStorage = AVR8 : at90usb1287 : NONE : 128 : 8 : 8 :
MassStorage = AVR8 : at90usb1287 : NONE : 128 : 4 : 8 :
MassStorage = AVR8 : at90usb647 : NONE : 64 : 4 : 8 :
MassStorage = AVR8 : at90usb1286 : NONE : 128 : 8 : 8 : MassStorage = AVR8 : at90usb1286 : NONE : 128 : 8 : 8 :
MassStorage = AVR8 : at90usb1286 : NONE : 128 : 4 : 8 :
MassStorage = AVR8 : at90usb646 : NONE : 64 : 4 : 8 :
MassStorage = AVR8 : atmega32u4 : LEONARDO : 32 : 4 : 16 :
MassStorage = AVR8 : atmega32u4 : NONE : 32 : 4 : 8 :
MassStorage = AVR8 : atmega16u4 : NONE : 16 : 4 : 8 :
MassStorage = AVR8 : atmega32u2 : NONE : 32 : 4 : 8 :
MassStorage = AVR8 : atmega16u2 : NONE : 16 : 4 : 8 :
MassStorage = AVR8 : at90usb162 : NONE : 16 : 4 : 8 :
MassStorage = AVR8 : at90usb1287 : NONE : 128 : 8 : 16 : MassStorage = AVR8 : at90usb1287 : NONE : 128 : 8 : 16 :
MassStorage = AVR8 : at90usb1287 : NONE : 128 : 4 : 16 :
MassStorage = AVR8 : at90usb647 : NONE : 64 : 4 : 16 :
MassStorage = AVR8 : at90usb1286 : NONE : 128 : 8 : 16 : MassStorage = AVR8 : at90usb1286 : NONE : 128 : 8 : 16 :
MassStorage = AVR8 : at90usb1286 : NONE : 128 : 4 : 16 :
MassStorage = AVR8 : at90usb646 : NONE : 64 : 4 : 16 :
MassStorage = AVR8 : atmega32u4 : NONE : 32 : 4 : 16 :
MassStorage = AVR8 : atmega16u4 : NONE : 16 : 4 : 16 :
MassStorage = AVR8 : atmega32u2 : NONE : 32 : 4 : 16 :
MassStorage = AVR8 : atmega16u2 : NONE : 16 : 4 : 16 :
MassStorage = AVR8 : at90usb162 : NONE : 16 : 4 : 16 :
# #

Loading…
Cancel
Save