This commit is contained in:
Wolfgang Hottgenroth
2016-10-31 13:37:10 +01:00
parent 7e4bac25c8
commit 910d8c7c02
12 changed files with 1260 additions and 26 deletions

21
canclient.h Normal file
View File

@ -0,0 +1,21 @@
/*
* canclient.h
*
* Created on: Oct 31, 2016
* Author: wn
*/
#ifndef CANCLIENT_H_
#define CANCLIENT_H_
#include <stdint.h>
namespace CanClientNS {
void begin();
void exec();
void sendMessage(uint32_t addr, uint8_t payloadLength, uint8_t *payload);
};
#endif /* CANCLIENT_H_ */