mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-15 00:33:05 +03:00
19 lines
212 B
C
19 lines
212 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void dev_info_svc_start();
|
|
|
|
void dev_info_svc_stop();
|
|
|
|
bool dev_info_svc_is_started();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|