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
407 B
28 lines
407 B
/*
|
|
* ble_cmd_mbx.h
|
|
*
|
|
* Created on: Jul 23, 2021
|
|
* Author: Andreas Berthoud
|
|
*/
|
|
|
|
#ifndef BLE_CMD_MBX_H_
|
|
#define BLE_CMD_MBX_H_
|
|
|
|
#include "cmd_mbx.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void push_ble_command(uint8_t * payload_ptr, uint16_t length);
|
|
|
|
uint8_t get_number_of_ble_commands_in_mailbox();
|
|
|
|
raw_command_t pop_ble_command();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* BLE_CMD_MBX_H_ */
|
|
|