repo.or.cz
/
cbaos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Semi-decennial update. 50% code inflation.
[cbaos.git]
/
main.c
blob
80694d8a36f9f6c2cfb5cbf3505ffaad4a104c7a
1
/* Author: Domen Puncer <domen@cba.si>. License: WTFPL, see file LICENSE */
2
#include <stdio.h>
3
#include <string.h>
4
5
#include <cbashell.h>
6
7
8
int
main
()
9
{
10
void
is_it_working
(
void
);
11
is_it_working
();
12
void
benchmark
(
void
);
13
//benchmark();
14
void
blinky
(
void
);
15
//blinky();
16
void
semtest
(
void
);
17
//semtest();
18
void
adctest
(
void
);
19
//adctest(); /* needs usb_test too */
20
int
usb_test
(
void
);
21
//usb_test();
22
23
return
0
;
24
}