1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-08 01:49:48 +03:00
ben-wpan/atusb/fw/atusb.c
Werner Almesberger a69916da52 atusb/fw/: make timer code use interrupts instead of polling
- board_app.c (timer_poll): replaced with interrupt handler
- board_app.c (__timer_read): merged polling of timer_poll into the
  read loop (so it works as before, provided that interrupts are
  disabled)
- board_app.c (timer_read): run __timer_read with interrupts disabled
- board_app.c (timer_init): enable timer 1 overflow interrupt
- atusb.c (main): enabled global interrupts
- atusb.c (main): don't call poll_timer anymore
- board.h (timer_poll): removed
2011-06-11 08:13:31 -03:00

45 lines
771 B
C

/*
* 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.
*/
#include <stdint.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include "usb.h"
#include "board.h"
#include "sernum.h"
#include "spi.h"
#include "atusb/ep0.h"
int main(void)
{
board_init();
reset_rf();
user_get_descriptor = sernum_get_descr;
/* now we should be at 8 MHz */
usb_init();
ep0_init();
timer_init();
sei();
while (1)
usb_poll();
}