aboutsummaryrefslogtreecommitdiffstats
path: root/examples/blinky.cpp
blob: 45c452848c000ef9a9e07559f026678ebd4b5435 (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
30
31
32
33
// Blinks the LED, pin 13

#include "wirish.h"

#define TEST_PIN 13

void setup() {
    pinMode(TEST_PIN, OUTPUT);
}

int toggle = 1;

void loop() {
    digitalWrite(TEST_PIN, toggle);
    toggle ^= 1;
    delay(100);
}

// Force init to be called *first*, i.e. before static object allocation.
// Otherwise, statically allocated object that need libmaple may fail.
 __attribute__(( constructor )) void premain() {
    init();
}

int main(void)
{
    setup();

    while (1) {
        loop();
    }
    return 0;
}