22 lines
298 B
C++
22 lines
298 B
C++
/*
|
|
* 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_ */
|