2011-03-09 05:41:32 +02:00
|
|
|
/*
|
|
|
|
* fw/boot.c - DFU boot loader for ATUSB
|
|
|
|
*
|
|
|
|
* Written 2008-2011 by Werner Almesberger
|
|
|
|
* Copyright 2008-2011 Werner Almesberger
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
2011-05-10 17:51:46 +03:00
|
|
|
#include <avr/pgmspace.h>
|
2011-03-09 05:41:32 +02:00
|
|
|
|
|
|
|
#define F_CPU 8000000UL
|
|
|
|
#include <util/delay.h>
|
|
|
|
|
|
|
|
#include "usb.h"
|
|
|
|
#include "dfu.h"
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "spi.h"
|
|
|
|
#include "atusb/ep0.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define MS_TO_LOOPS(ms) ((uint32_t) (ms)*81)
|
|
|
|
|
|
|
|
|
|
|
|
static void (*run_payload)(void) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2011-05-10 17:51:46 +03:00
|
|
|
/*
|
|
|
|
* pgm_read_byte gets cached and there doesn't seem to be any other
|
|
|
|
* way to dissuade gcc from doing this.
|
|
|
|
*/
|
|
|
|
volatile int zero = 0;
|
2011-03-09 05:41:32 +02:00
|
|
|
uint32_t loop = 0;
|
|
|
|
|
|
|
|
board_init();
|
|
|
|
spi_init();
|
|
|
|
reset_rf();
|
|
|
|
|
|
|
|
/* now we should be at 8 MHz */
|
|
|
|
|
|
|
|
usb_init();
|
|
|
|
dfu_init();
|
|
|
|
|
|
|
|
led(1);
|
|
|
|
|
|
|
|
while (loop != MS_TO_LOOPS(2000)) {
|
|
|
|
usb_poll();
|
2011-05-10 17:51:46 +03:00
|
|
|
if (dfu.state == dfuIDLE && pgm_read_byte(zero) != 0xff)
|
2011-03-09 05:41:32 +02:00
|
|
|
loop++;
|
|
|
|
else
|
|
|
|
loop = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
led(0);
|
|
|
|
|
2011-03-11 22:52:03 +02:00
|
|
|
usb_reset();
|
2011-03-09 05:41:32 +02:00
|
|
|
run_payload();
|
|
|
|
|
|
|
|
while (1); /* not reached */
|
|
|
|
}
|