initial commit

This commit is contained in:
jhChun
2026-04-08 16:58:54 +09:00
commit 82e33d8bf9
2578 changed files with 1590432 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*******************************************************************************
* @file ble_services.h
* @brief BLE Services - NUS and DFU
* @author Charles KWON <charleskwon@medithings.co.kr>
* @date 2025-01-30
* @copyright (c) 2025 Medithings Inc. All rights reserved.
*
* @details Nordic UART Service and DFU service initialization.
******************************************************************************/
#ifndef BLE_SERVICES_H
#define BLE_SERVICES_H
#include <stdint.h>
#include <stdbool.h>
/*==============================================================================
* FUNCTION PROTOTYPES
*============================================================================*/
/**
* @brief Initialize BLE services (NUS, DFU)
*/
void services_init(void);
#if BLE_DFU_ENABLED
/**
* @brief Initialize DFU async SVCI
*/
void dfu_init(void);
#endif
#endif /* BLE_SERVICES_H */