summaryrefslogtreecommitdiffstats
path: root/lib/msp430/main.cpp
blob: 138cc109a98b401841906f26bc8e39fec62d2c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <Energia.h>

int main(void)
{
	init();

	setup();

	for (;;) {
		loop();
		if (serialEventRun) serialEventRun();
	}

	return 0;
}