summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/usb_hid/override_wiring.c
blob: 1e9a94ce266d8608e024304a2a9e03fcd80ea042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * To keep Timer0 for common/timer.c override arduino/wiring.c.
 */
#define __DELAY_BACKWARD_COMPATIBLE__
#include <util/delay.h>
#include "common/timer.h"
#include "Arduino.h"


unsigned long millis()
{
    return timer_read32();
}
unsigned long micros()
{
    return timer_read32() * 1000UL;
}
void delay(unsigned long ms)
{
    _delay_ms(ms);
}
void delayMicroseconds(unsigned int us)
{
    _delay_us(us);
}
void init()
{
    timer_init();
}