diff options
author | Christian Pointner <equinox@spreadspace.org> | 2012-05-24 22:18:52 +0000 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2012-05-24 22:18:52 +0000 |
commit | 6386c12af8af2dc7099dca3ba3b967016bfccf0d (patch) | |
tree | aea3e4e42426518e23ed1519cbf93f16d4ab9adb | |
parent | moved lib code to lib dir (diff) |
added reset2bootloader function
git-svn-id: https://svn.spreadspace.org/avr/trunk@30 aa12f405-d877-488e-9caf-2d797e2a1cc7
-rw-r--r-- | blink/blink.c | 11 | ||||
-rw-r--r-- | lib/led.c | 3 | ||||
-rw-r--r-- | lib/util.c | 49 | ||||
-rw-r--r-- | lib/util.h | 1 |
4 files changed, 58 insertions, 6 deletions
diff --git a/blink/blink.c b/blink/blink.c index 726cc83..b787fd0 100644 --- a/blink/blink.c +++ b/blink/blink.c @@ -20,8 +20,8 @@ * along with spreadspace avr utils. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "avr/io.h"
-#include "util/delay.h"
+#include <avr/io.h>
+#include <util/delay.h>
#include "util.h"
#include "led.h"
@@ -31,9 +31,12 @@ int main(void) cpu_init();
led_init();
- for(;;) {
- _delay_ms(50);
+ int i;
+ for(i=0;i<10;++i) {
+ _delay_ms(250);
led_toggle();
}
+ reset2bootloader();
+ for(;;){}
}
@@ -20,7 +20,8 @@ * along with spreadspace avr utils. If not, see <http://www.gnu.org/licenses/>. */ -#include "avr/io.h" +#include <avr/io.h> + #include "led.h" #if defined(__BOARD_arduinoUno__) || defined(__BOARD_AvrNetIo__) @@ -20,7 +20,10 @@ * along with spreadspace avr utils. If not, see <http://www.gnu.org/licenses/>. */ -#include "avr/io.h" +#include <avr/interrupt.h> +#include <avr/io.h> +#include <util/delay.h> + #include "util.h" #if defined(CLKPR) @@ -33,3 +36,47 @@ void cpu_init(void) { CPU_PRESCALE(0); } + +void reset2bootloader(void) +{ +#if defined(__BOARD_teensy1__) || defined(__BOARD_teensy1pp__) || defined(__BOARD_teensy2__) || defined(__BOARD_teensy2pp__) || defined(__BOARD_hhd70dongle__) + cli(); + // disable watchdog, if enabled + // disable all peripherals + UDCON = 1; + USBCON = (1<<FRZCLK); // disable USB + UCSR1B = 0; + _delay_ms(5); + #if defined(__BOARD_teensy1__) + EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0; + TIMSK0 = 0; TIMSK1 = 0; UCSR1B = 0; + DDRB = 0; DDRC = 0; DDRD = 0; + PORTB = 0; PORTC = 0; PORTD = 0; + asm volatile("jmp 0x3E00"); + #elif defined(__BOARD_teensy2__) + EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0; ADCSRA = 0; + 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; + asm volatile("jmp 0x7E00"); + #elif defined(__BOARD_teensy2pp__) + 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; + asm volatile("jmp 0xFC00"); + #elif defined(__BOARD_teensy2pp__) + 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; + asm volatile("jmp 0x1FC00"); + #elif defined(__BOARD_hhd70dongle__) + EIMSK = 0; PCICR = 0; SPCR = 0; ACSR = 0; EECR = 0; ADCSRA = 0; + 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; + asm volatile("jmp 0x3800"); + #endif +#endif +} @@ -24,5 +24,6 @@ #define SPREADSPACE_util_h_INCLUDED void cpu_init(void); +void reset2bootloader(void); #endif |