mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
9 lines
113 B
C
9 lines
113 B
C
#pragma once
|
|
|
|
/// @brief Enum representing the arm7 state.
|
|
enum class Arm7State
|
|
{
|
|
Idle,
|
|
ExitRequested
|
|
};
|