Flipper Zero Firmware
Loading...
Searching...
No Matches
dev_info_service.h
1#pragma once
2
3#include <stdint.h>
4#include <stdbool.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10/*
11 * Device information service.
12 * Holds Flipper name, version and other information.
13 */
14
16
17BleServiceDevInfo* ble_svc_dev_info_start(void);
18
19void ble_svc_dev_info_stop(BleServiceDevInfo* service);
20
21#ifdef __cplusplus
22}
23#endif
Definition dev_info_service.c:26