20 lines
708 B
C
20 lines
708 B
C
|
|
#include <stdint.h>
|
||
|
|
#include <string>
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
void test3WriteLog(const std::string &msg);
|
||
|
|
|
||
|
|
void test3_init(uint8_t domainid, std::string appname);
|
||
|
|
|
||
|
|
void command_callback(std::string src, std::string dest, std::string type,
|
||
|
|
std::string reserve1, std::string reserve2,
|
||
|
|
std::vector<uint8_t>& data);
|
||
|
|
|
||
|
|
void telemetry_callback(std::string src, std::string dest, std::string type,
|
||
|
|
std::string reserve1, std::string reserve2,
|
||
|
|
std::vector<uint8_t>& data);
|
||
|
|
|
||
|
|
void test3_command_Pub(uint8_t* data, std::string dest, uint16_t len);
|
||
|
|
|
||
|
|
void test3_telemetry_Pub(uint8_t* data, std::string dest, uint16_t len);
|