int test geht

This commit is contained in:
Tristan Krause 2019-03-26 15:02:58 +01:00
parent fae65afe8b
commit adfa389abe
10 changed files with 179 additions and 98 deletions

16
requests.h Normal file
View file

@ -0,0 +1,16 @@
#ifndef REQUESTS_H
#define REQUESTS_H
#include "global_vars.h"
constexpr static uint8_t RQ_DISC = 0;
constexpr static uint8_t RQ_TEST = 1;
constexpr static uint8_t RQ_INFO = 2;
constexpr static uint8_t RQ_INT = 3;
void rqTestConnection(void);
void rqBoardInfo(void);
void rqTestIntConv(void);
void rqTestLongConv(void);
#endif // REQUESTS_H