aboutsummaryrefslogtreecommitdiff
path: root/src/core/startup_mary.cpp
blob: f18263771c3442ba30952eaf4c61a0deea68a6d8 (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
/*
 * startup_mary.cpp
 *
 *  Created on: 2011/08/04
 *      Author: lynxeyed
 */

#include "libmary.h"


void setup(void);
void loop(void);

int main(void)
{

	setup_systick();	// for millis(),delay(us)
	setup_TIMER32_1();	// for micros(),delayMicroseconds(us),attachMicroseconds(func,usec)

	setup();

	while(1)
	{
		loop();
	}

}