summaryrefslogtreecommitdiff
path: root/system.hpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-06-29 22:00:26 +0200
committerFelix Morgner <felix.morgner@gmail.com>2026-06-29 22:00:26 +0200
commit82620f74d6e40617b725dcb8e50cdd94eb3e3e86 (patch)
treef3c7e118b85cdf711617a1c1b82f61545c6ccd6c /system.hpp
parentd7c2a8029c4aefc295719174a863129645d6ab99 (diff)
downloadthrottle-quadrant-82620f74d6e40617b725dcb8e50cdd94eb3e3e86.tar.xz
throttle-quadrant-82620f74d6e40617b725dcb8e50cdd94eb3e3e86.zip
tq: rewrite for shift register semanticsHEADmaster
Diffstat (limited to 'system.hpp')
-rw-r--r--system.hpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/system.hpp b/system.hpp
deleted file mode 100644
index e39b79e..0000000
--- a/system.hpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef THROTTLE_QUADRANT_SYSTEM_HPP
-#define THROTTLE_QUADRANT_SYSTEM_HPP
-
-#include <Arduino.h>
-
-//! All our custom code lives in its own name space to avoid collisions.
-namespace tq::system {
-
-//! The pin to which the "data ready" line of the throttle quadrant is connected.
-//!
-//! Since the throttle qudrant runs its logic asynchronously to the execution
-//! of our code, it exposes a signal to inform us that it has acquired new
-//! data. It does so by pulling the "data ready" line low.
-auto constexpr data_ready_signal_pin = 2;
-
-}
-
-#endif \ No newline at end of file