1
0
Fork 0

usb_hid: Fix timer size uint16_t to uint32_t;

This commit is contained in:
tmk 2012-09-02 23:47:18 +09:00
parent b17f52ebe1
commit c77c5043a1
8 changed files with 66 additions and 17 deletions

View file

@ -8,11 +8,11 @@
unsigned long millis()
{
return timer_read();
return timer_read32();
}
unsigned long micros()
{
return timer_read() * 1000UL;
return timer_read32() * 1000UL;
}
void delay(unsigned long ms)
{