pinebuds/services/ble_stack/ble_ip/rwble_hl.h

48 lines
1.2 KiB
C
Raw Normal View History

2022-08-15 04:20:27 -05:00
#ifndef RWBLE_HL_H_
#define RWBLE_HL_H_
#include <stdint.h>
/**
****************************************************************************************
* @addtogroup ROOT
* @brief Entry points of the BLE Host stack
*
* This module contains the primitives that allow an application accessing and running the
* BLE protocol stack
*
* @{
****************************************************************************************
*/
/*
* DEFINES
****************************************************************************************
*/
/*
* FUNCTION DECLARATIONS
****************************************************************************************
*/
/**
****************************************************************************************
* @brief Initialize the BLE Host stack.
****************************************************************************************
*/
void rwble_hl_init(void);
/**
****************************************************************************************
* @brief Initialize the host (reset requested)
*
****************************************************************************************
*/
void rwble_hl_reset(void);
/// @} RWBLE_HL
#endif // RWBLE_HL_H_