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

18
requests.cpp Normal file
View file

@ -0,0 +1,18 @@
#include "requests.h"
void rqTestConnection()
{
uint8_t dummy = usart.readByte();
usart.writeByte(USART::MSG_OK);
usart.writeByte(dummy);
}
void rqBoardInfo()
{
}
void rqTestIntConv()
{
usart.writeInt(usart.readInt() * 3);
}