1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 *******************************************************************************
 * @file     app_ble_svr.h
 * @create   2023-08-01    
 * @author   Panchip BLE GROUP
 * @note
 * Copyright (c) 2022 Shanghai Panchip Microelectronics Co.,Ltd.
 *
 *******************************************************************************
 */
#ifndef APP_BLE_SVR_H_
#define APP_BLE_SVR_H_
 
#include "../../../../profiles/gap/gap.h"
#include "../../../../profiles/gatt/gatt.h"
#include "../../../../profiles/hrs/hrs.h"
#include "../../../../profiles/dis/dis.h"
#include "../../../../profiles/ans/ans.h"
#include "../../../../profiles/gw/gw.h"
#include "../../../../profiles/bas/bas.h"
#include "../../../../profiles/hid/hid.h"
#include "../../../../profiles/uart_spp/uart_spp.h"
 
void app_ble_svc_init(void);
 
#endif