projects
/
bertos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Show hourglass when doing something potentially long
[bertos.git]
/
wizard
/
srctemplates
/
main.c
1
// Emtpy main.c file generated by the wizard
2
#include <cpu/irq.h>
3
4
static void init(void)
5
{
6
IRQ_ENABLE;
7
// insert initialization calls here
8
}
9
10
int main(void)
11
{
12
init();
13
while (1)
14
{
15
// your code goes here
16
}
17
18
return 0;
19
}
20