mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-11-14 20:36:03 +01:00
16 lines
220 B
C
16 lines
220 B
C
#include "premier.h"
|
|
|
|
#include "serial.h"
|
|
|
|
int main()
|
|
{
|
|
unsigned char g;
|
|
configureCA();
|
|
sendByteCA('c');
|
|
while ((g = readByteCA())) {
|
|
printf("%c\n", g);
|
|
}
|
|
deconfigureCA();
|
|
return 0;
|
|
}
|