mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
8 lines
150 B
C
8 lines
150 B
C
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
char* audio_modes_text[2] = {
|
|
"Internal",
|
|
"External",
|
|
};
|
|
bool audio_modes_values[2] = {false, true}; |