1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-06-02 02:55:01 +02:00
cdf2018-principal/chef/src/premier.c

16 lines
220 B
C
Raw Normal View History

2018-02-07 17:57:01 +01:00
#include "premier.h"
2018-02-12 19:23:24 +01:00
#include "serial.h"
int main()
{
unsigned char g;
configureCA();
sendByteCA('c');
while ((g = readByteCA())) {
printf("%c\n", g);
}
deconfigureCA();
2018-02-07 17:57:01 +01:00
return 0;
}