18 lines
395 B
C
18 lines
395 B
C
/**
|
|
* @file include/di_fw/drv/xbee.h
|
|
* @brief Xbee 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_H_
|
|
#define INCLUDE_DI_FW_DRV_XBEE_H_
|
|
|
|
/**
|
|
* initialize xbee
|
|
* @return DNOK when correctly executed
|
|
*/
|
|
di_errno_t di_fw_xbee_init(void);
|
|
|
|
#endif /* INCLUDE_DI_FW_DRV_XBEE_H_ */
|