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>
|
|
|
|
|
|
|
|
#include "usb.h"
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "spi.h"
|
|
|
|
#include "atusb/ep0.h"
|
|
|
|
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
board_init();
|
|
|
|
spi_init();
|
|
|
|
reset_rf();
|
|
|
|
|
|
|
|
/* now we should be at 8 MHz */
|
|
|
|
|
|
|
|
usb_init();
|
|
|
|
ep0_init();
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
usb_poll();
|
|
|
|
}
|