Flipper Zero Firmware
Loading...
Searching...
No Matches
app_api.h
Go to the documentation of this file.
1
8#pragma once
9
10#include <stdint.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16void app_api_accumulator_set(uint32_t value);
17
18uint32_t app_api_accumulator_get(void);
19
20void app_api_accumulator_add(uint32_t value);
21
22void app_api_accumulator_sub(uint32_t value);
23
24void app_api_accumulator_mul(uint32_t value);
25
26#ifdef __cplusplus
27}
28#endif