summaryrefslogtreecommitdiff
path: root/lib/util.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2014-03-19 02:42:04 +0000
committerChristian Pointner <equinox@spreadspace.org>2014-03-19 02:42:04 +0000
commit98812e6b5f8a3bcdf3c358b4e873b16dd0210627 (patch)
treee5090d09bc5a2d680a45bbfd3cb2263eb59db0a4 /lib/util.c
parentfixed usb string length (diff)
added inital support for rhmixxx
git-svn-id: https://svn.spreadspace.org/avr/trunk@255 aa12f405-d877-488e-9caf-2d797e2a1cc7
Diffstat (limited to 'lib/util.c')
-rw-r--r--lib/util.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/util.c b/lib/util.c
index 104f2b6..c99c0f7 100644
--- a/lib/util.c
+++ b/lib/util.c
@@ -66,6 +66,8 @@ void jtag_disable(void)
#define BOOTLOADER_VEC 0x3800
#elif defined(__BOARD_slowpandongle1__) || defined(__BOARD_slowpandongle2__) || defined(__BOARD_teenstep__)
#define BOOTLOADER_VEC 0x3800
+#elif defined(__BOARD_rhmixxx__)
+ #define BOOTLOADER_VEC 0x7800
#else
#define BOOTLOADER_VEC 0x0000
#endif
@@ -78,7 +80,7 @@ void reset2bootloader(void)
#if defined(__BOARD_teensy1__) || defined(__BOARD_teensy1pp__) || defined(__BOARD_teensy2__) || defined(__BOARD_teensy2pp__) || \
defined(__BOARD_hhd70dongle__) || defined(__BOARD_rda1846dongle__) || defined(__BOARD_culV3__) || \
defined(__BOARD_slowpandongle1__) || defined(__BOARD_slowpandongle2__) || defined(__BOARD_teenstep__) || \
- defined(__BOARD_minimus__) || defined(__BOARD_minimus32__)
+ defined(__BOARD_rhmixxx__) || defined(__BOARD_minimus__) || defined(__BOARD_minimus32__)
cli();
// disable watchdog, if enabled
// disable all peripherals
@@ -122,6 +124,11 @@ void reset2bootloader(void)
TIMSK0 = 0; TIMSK1 = 0; TIMSK3 = 0; TIMSK4 = 0; UCSR1B = 0; TWCR = 0;
DDRB = 0; DDRC = 0; DDRD = 0; DDRE = 0; DDRF = 0; TWCR = 0;
PORTB = 0; PORTC = 0; PORTD = 0; PORTE = 0; PORTF = 0;
+ #elif defined(__BOARD_rhmixxx__)
+ EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0; ADCSRA = 0;
+ TIMSK0 = 0; TIMSK1 = 0; TIMSK2 = 0; TIMSK3 = 0; UCSR1B = 0; TWCR = 0;
+ DDRA = 0; DDRB = 0; DDRC = 0; DDRD = 0; DDRE = 0; DDRF = 0;
+ PORTA = 0; PORTB = 0; PORTC = 0; PORTD = 0; PORTE = 0; PORTF = 0;
#endif
start_bootloader();
#endif