You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
267 B
18 lines
267 B
7 years ago
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "gex_client.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
GexClient *gex = GEX_Init("/dev/ttyACM0", 200);
|
||
|
if (!gex) {
|
||
|
fprintf(stderr, "FAILED TO CONNECT, ABORTING!\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
printf("Hello, World!\n");
|
||
|
|
||
|
GEX_DeInit(gex);
|
||
|
return 0;
|
||
|
}
|