/* * 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_usb_command(uint8_t * payload_ptr, uint16_t length); uint8_t get_number_of_usb_commands_in_mailbox(); raw_command_t pop_usb_command(); #ifdef __cplusplus } #endif #endif /* BLE_CMD_MBX_H_ */