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.
16 lines
392 B
16 lines
392 B
/*
|
|
* dispatch.hpp
|
|
*
|
|
* Created on: 18 Jul 2021
|
|
* Author: Andreas Berthoud
|
|
*/
|
|
|
|
#ifndef DISPATCH_HPP_
|
|
#define DISPATCH_HPP_
|
|
|
|
#include <stdint.h>
|
|
|
|
extern "C" void handle_received_usb_command(uint8_t command_id, uint8_t * payload_ptr, uint16_t length);
|
|
extern "C" void handle_received_ble_command(uint8_t command_id, uint8_t * payload_ptr, uint16_t length);
|
|
|
|
#endif /* DISPATCH_HPP_ */
|
|
|