blob: 24b64832518a3b9e41eddf8808c4ec6925464f59 (
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
|
int main(void)
{
init();
setup();
while (1) {
loop();
}
return 0;
}
/* Required for C++ hackery */
/* TODO: This really shouldn't go here... move it later
* */
extern "C" void __cxa_pure_virtual(void) {
while(1)
;
}
/* Implemented:
* void pinMode(pin, mode)
* void digitalWrite(pin, value)
* uint32_t digitalRead(pin)
* uint32_t analogRead(pin)
* void randomSeed(seed)
* long random(max)
* long random(min, max)
* */
|