Mark internal helpers as static and remove from headers

This commit is contained in:
2025-10-01 01:22:58 +02:00
parent 6e845c65da
commit 05aae91d12
4 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ void pumpsInit(void) {
//PORTD &= ~(1 << actuatorMask);
}
void triggerPump(uint8_t pump_pin) {
static void triggerPump(uint8_t pump_pin) {
// Turn on pump
PORTD |= (1 << pump_pin);