2011-02-14 17:48:42 +02:00
|
|
|
/*
|
|
|
|
* fw/atusb.c - ATUSB initialization and main loop
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-02-14 04:46:36 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
2011-06-11 20:31:13 +03:00
|
|
|
#include <avr/sleep.h>
|
2011-06-11 07:59:03 +03:00
|
|
|
#include <avr/interrupt.h>
|
2011-02-14 04:46:36 +02:00
|
|
|
|
|
|
|
#include "usb.h"
|
|
|
|
|
|
|
|
#include "board.h"
|
2011-05-10 23:23:08 +03:00
|
|
|
#include "sernum.h"
|
2011-02-14 04:46:36 +02:00
|
|
|
#include "spi.h"
|
|
|
|
#include "atusb/ep0.h"
|
|
|
|
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
board_init();
|
2011-06-20 21:49:33 +03:00
|
|
|
board_app_init();
|
2011-02-14 04:46:36 +02:00
|
|
|
reset_rf();
|
|
|
|
|
2011-05-10 23:23:08 +03:00
|
|
|
user_get_descriptor = sernum_get_descr;
|
|
|
|
|
2011-02-14 04:46:36 +02:00
|
|
|
/* now we should be at 8 MHz */
|
|
|
|
|
|
|
|
usb_init();
|
|
|
|
ep0_init();
|
2011-06-11 07:52:16 +03:00
|
|
|
timer_init();
|
2011-02-14 04:46:36 +02:00
|
|
|
|
2011-06-11 17:06:18 +03:00
|
|
|
/* move interrupt vectors to 0 */
|
|
|
|
MCUCR = 1 << IVCE;
|
|
|
|
MCUCR = 0;
|
|
|
|
|
2011-06-11 07:59:03 +03:00
|
|
|
sei();
|
|
|
|
|
2011-06-11 20:31:13 +03:00
|
|
|
while (1)
|
|
|
|
sleep_mode();
|
2011-02-14 04:46:36 +02:00
|
|
|
}
|