mirror of
https://github.com/LNH-team/dspico-usb-examples.git
synced 2026-04-13 13:13:34 +02:00
9 lines
113 B
C
9 lines
113 B
C
#pragma once
|
|
|
|
/// @brief Enum representing the arm7 state.
|
|
enum class Arm7State
|
|
{
|
|
Idle,
|
|
ExitRequested
|
|
};
|