1 #ifndef CO_BT_H_ 2 #define CO_BT_H_ 3 4 /** 5 **************************************************************************************** 6 * @addtogroup COMMON Common SW Block 7 * @ingroup ROOT 8 * @brief The Common RW SW Block. 9 * 10 * The COMMON is the block with Bluetooth definitions and structures shared 11 * to all the protocol stack blocks. This also contain software wide error code 12 * definitions, mathematical functions, help functions, list and buffer definitions. 13 * 14 * @{ 15 **************************************************************************************** 16 */ 17 18 /** 19 **************************************************************************************** 20 * @addtogroup CO_BT Common Bluetooth defines 21 * @ingroup COMMON 22 * @brief Common Bluetooth definitions and structures. 23 * 24 * @{ 25 **************************************************************************************** 26 */ 27 28 29 /* 30 * INCLUDE FILES 31 **************************************************************************************** 32 */ 33 #include <stdbool.h> // standard boolean definitions 34 #include <stddef.h> // standard definitions 35 #include <stdint.h> // standard integer definitions 36 37 /* 38 * DEFINES 39 **************************************************************************************** 40 */ 41 42 #include "co_bt_defines.h" // Bluetooth defines 43 #include "co_lmp.h" // Bluetooth LMP definitions 44 #include "co_hci.h" // Bluetooth HCI definitions 45 #include "co_error.h" // Bluetooth error codes definitions 46 47 /// @} CO_BT 48 #endif // CO_BT_H_ 49