diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-05-03 14:15:03 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-05-03 14:15:03 (GMT) |
commit | 9ea1ffa5e7b7c98532c217cb4595a301fd65f718 (patch) | |
tree | 09b6833b458ee010d98b8189f7a9ec8fc8a0e0cf /software/lib | |
parent | fde563bf345e3cae611992c4b2fdd9516f58002f (diff) |
upgraded avr utils
Diffstat (limited to 'software/lib')
-rw-r--r-- | software/lib/led.c | 12 | ||||
-rw-r--r-- | software/lib/util.c | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/software/lib/led.c b/software/lib/led.c index 593d97b..fd2754e 100644 --- a/software/lib/led.c +++ b/software/lib/led.c @@ -29,13 +29,15 @@ #elif defined(__BOARD_teensy1__) || defined(__BOARD_teensy1pp__) || defined(__BOARD_teensy2__) || defined(__BOARD_teensy2pp__) || \ defined(__BOARD_arduinoNG__) || defined(__BOARD_arduino2009v2__) || defined(__BOARD_arduino2009__) || defined(__BOARD_arduino10000__) || \ defined(__BOARD_hhd70dongle__) || defined(__BOARD_rda1846dongle__) || defined(__BOARD_culV3__) || \ - defined(__BOARD_slowpandongle1__) || defined(__BOARD_slowpandongle2__) || defined(__BOARD_teenstep__) + defined(__BOARD_slowpandongle1__) || defined(__BOARD_slowpandongle2__) || defined(__BOARD_teenstep__) || \ + defined(__BOARD_rhmixxx__) #define NUM_LEDS 1 #else #define NUM_LEDS 0 #endif -#if defined(__BOARD_teensy1__) || defined(__BOARD_teensy1pp__) || defined(__BOARD_minimus__) || defined(__BOARD_minimus32__) +#if defined(__BOARD_teensy1__) || defined(__BOARD_teensy1pp__) || defined(__BOARD_minimus__) || defined(__BOARD_minimus32__) || \ + defined(__BOARD_rhmixxx__) #define LED_DIR 0 #else #define LED_DIR 1 @@ -76,6 +78,12 @@ #define LED_PINNUM 5 #endif +#if defined(__BOARD_rhmixxx__) +#define LED_PORT PORTE +#define LED_DDR DDRE +#define LED_PINNUM 0 +#endif + void led_init(void) { #if NUM_LEDS >= 1 diff --git a/software/lib/util.c b/software/lib/util.c index c99c0f7..7442b2c 100644 --- a/software/lib/util.c +++ b/software/lib/util.c @@ -67,7 +67,7 @@ void jtag_disable(void) #elif defined(__BOARD_slowpandongle1__) || defined(__BOARD_slowpandongle2__) || defined(__BOARD_teenstep__) #define BOOTLOADER_VEC 0x3800 #elif defined(__BOARD_rhmixxx__) - #define BOOTLOADER_VEC 0x7800 + #define BOOTLOADER_VEC 0xF000 #else #define BOOTLOADER_VEC 0x0000 #endif |