mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
585b7f963d
merge ofw commit
25 lines
490 B
C
25 lines
490 B
C
#include "app_api.h"
|
|
|
|
/* Actual implementation of app's API and its private state */
|
|
|
|
static uint32_t accumulator = 0;
|
|
|
|
void app_api_accumulator_set(uint32_t value) {
|
|
accumulator = value;
|
|
}
|
|
|
|
uint32_t app_api_accumulator_get(void) {
|
|
return accumulator;
|
|
}
|
|
|
|
void app_api_accumulator_add(uint32_t value) {
|
|
accumulator += value;
|
|
}
|
|
|
|
void app_api_accumulator_sub(uint32_t value) {
|
|
accumulator -= value;
|
|
}
|
|
|
|
void app_api_accumulator_mul(uint32_t value) {
|
|
accumulator *= value;
|
|
}
|