mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-17 22:42:28 +02:00
f8fbb02bb0
- atusb.c (main), board.h (board_init), board.c (board_init): moved clock and I/O initialization to board file - board.h (led), board.c (led), atusb.c (main): abstracted LED setting in function "led" instead of open-coding it - spi.c (spi_init): set nSS to 1 before enabling the output, so that we don't generate what looks like an empty SPI transaction
34 lines
372 B
C
34 lines
372 B
C
#include <stdint.h>
|
|
|
|
#include <avr/io.h>
|
|
|
|
#define F_CPU 8000000UL
|
|
#include <util/delay.h>
|
|
|
|
#include "freakusb.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 */
|
|
|
|
led(1);
|
|
_delay_ms(100);
|
|
led(0);
|
|
|
|
usb_init();
|
|
ep0_init();
|
|
hw_init();
|
|
|
|
while (1)
|
|
usb_poll();
|
|
}
|