20 lines
807 B
C
20 lines
807 B
C
/*******************************************************************************
|
|
* @file ble_services.c
|
|
* @brief BLE Services - NUS and DFU (Stub file)
|
|
* @author Charles KWON <charleskwon@medithings.co.kr>
|
|
* @date 2025-01-30
|
|
* @copyright (c) 2025 Medithings Inc. All rights reserved.
|
|
*
|
|
* @details This is now a stub file. All service initialization code has been
|
|
* moved to ble_core.c to avoid static variable access issues with
|
|
* Nordic SDK macros (BLE_NUS_DEF, NRF_BLE_QWR_DEF, etc.).
|
|
*
|
|
* See ble_core.c for:
|
|
* - services_init()
|
|
* - dfu_init()
|
|
* - NUS data handler
|
|
* - DFU event handlers
|
|
******************************************************************************/
|
|
|
|
/* Empty stub - all code moved to ble_core.c */
|