From 04aaf9307178c8256170eb8c845c6b5119856111 Mon Sep 17 00:00:00 2001 From: sirlilpanda <33928689+sirlilpanda@users.noreply.github.com> Date: Mon, 1 Sep 2025 23:21:57 +1200 Subject: [PATCH] added comments --- src/states/state.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/states/state.h b/src/states/state.h index 7da8c77..c96b587 100644 --- a/src/states/state.h +++ b/src/states/state.h @@ -1,7 +1,8 @@ #pragma once #include "../device.h" -// each of these are each state +// each of these are the functions that prove +// the given state transition void setDeviceStateToLock(Device_t *device); void setDeviceStateToUnlock(Device_t *device); void setDeviceStateToDebug(Device_t *device);