Flipper Zero Firmware
Loading...
Searching...
No Matches
expansion_settings.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <stdint.h>
8#include <stdbool.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
17typedef struct {
22 uint8_t uart_index;
24
31
37void expansion_settings_save(const ExpansionSettings* settings);
38
39#ifdef __cplusplus
40}
41#endif
void expansion_settings_load(ExpansionSettings *settings)
Load expansion module support settings from file.
Definition expansion_settings.c:14
void expansion_settings_save(const ExpansionSettings *settings)
Save expansion module support settings to file.
Definition expansion_settings.c:31
Expansion module support settings storage type.
Definition expansion_settings.h:17
uint8_t uart_index
Numerical index of serial port used to communicate with expansion modules.
Definition expansion_settings.h:22