You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
322 B
28 lines
322 B
/*
|
|
* cmd_mbx.h
|
|
*
|
|
* Created on: Jul 27, 2021
|
|
* Author: Andreas Berthoud
|
|
*/
|
|
|
|
#ifndef CMD_MBX_H_
|
|
#define CMD_MBX_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
uint8_t payload[247];
|
|
uint16_t size;
|
|
} raw_command_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* CMD_MBX_H_ */
|
|
|