summaryrefslogtreecommitdiff
path: root/project/Core/Inc/Project
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-11-04 23:34:37 -0500
committersowgro <tpoke.ferrari@gmail.com>2025-11-04 23:34:37 -0500
commitd5dac33672ae1e940b3fda4ee4f4e940229d996f (patch)
tree25a07bc1eac32d60376008911cc9cf97b3393d6c /project/Core/Inc/Project
parenta98361e6babc866bd7b4ed6b22f197e98e2dc28a (diff)
download340-repo-Sowgro-d5dac33672ae1e940b3fda4ee4f4e940229d996f.tar.gz
340-repo-Sowgro-d5dac33672ae1e940b3fda4ee4f4e940229d996f.tar.bz2
340-repo-Sowgro-d5dac33672ae1e940b3fda4ee4f4e940229d996f.zip
get most interrupt handlers working for project pt2
Diffstat (limited to 'project/Core/Inc/Project')
-rw-r--r--project/Core/Inc/Project/local_control.h17
-rw-r--r--project/Core/Inc/Project/project.h2
-rw-r--r--project/Core/Inc/Project/remote_control.h17
3 files changed, 35 insertions, 1 deletions
diff --git a/project/Core/Inc/Project/local_control.h b/project/Core/Inc/Project/local_control.h
new file mode 100644
index 0000000..b691cde
--- /dev/null
+++ b/project/Core/Inc/Project/local_control.h
@@ -0,0 +1,17 @@
+/*
+ * local_control.h
+ *
+ * Created on: Nov 4, 2025
+ * Author: sowgro
+ */
+
+#ifndef INC_PROJECT_LOCAL_CONTROL_H_
+#define INC_PROJECT_LOCAL_CONTROL_H_
+
+void local_control_start();
+
+void local_control_loop();
+
+void local_control_stop();
+
+#endif /* INC_PROJECT_LOCAL_CONTROL_H_ */
diff --git a/project/Core/Inc/Project/project.h b/project/Core/Inc/Project/project.h
index da3590c..1d07abd 100644
--- a/project/Core/Inc/Project/project.h
+++ b/project/Core/Inc/Project/project.h
@@ -9,6 +9,6 @@
#define INC_PROJECT_H_
void project_run();
-void handle_input(char buffer[], uint8_t *state);
+uint8_t *project_get_state();
#endif /* INC_PROJECT_H_ */
diff --git a/project/Core/Inc/Project/remote_control.h b/project/Core/Inc/Project/remote_control.h
new file mode 100644
index 0000000..469e4ab
--- /dev/null
+++ b/project/Core/Inc/Project/remote_control.h
@@ -0,0 +1,17 @@
+/*
+ * remote_control.h
+ *
+ * Created on: Nov 4, 2025
+ * Author: sowgro
+ */
+
+#ifndef INC_PROJECT_REMOTE_CONTROL_H_
+#define INC_PROJECT_REMOTE_CONTROL_H_
+
+void remote_control_start();
+
+void remote_control_loop();
+
+void remote_control_stop();
+
+#endif /* INC_PROJECT_REMOTE_CONTROL_H_ */