19 lines
520 B
C
19 lines
520 B
C
/**
|
|
* @file include/di_fw/drv/xbee/callbacks.h
|
|
* @brief Xbee callbacks header file
|
|
* @date August 30, 2016
|
|
* @author R.W.A. van der Heijden
|
|
* @copyright 2016 Dual Inventive Technology Centre B.V.
|
|
*/
|
|
#ifndef INCLUDE_DI_FW_DRV_XBEE_CALLBACKS_H_
|
|
#define INCLUDE_DI_FW_DRV_XBEE_CALLBACKS_H_
|
|
|
|
/**
|
|
* check AT response from Xbee
|
|
* @param data the response data
|
|
* @param len the length of the data
|
|
*/
|
|
void di_fw_xbee_cb_at_command_response(uint8_t *data, size_t len);
|
|
|
|
#endif /* INCLUDE_DI_FW_DRV_XBEE_CALLBACKS_H_ */
|