From 17e40785606ac11e3cdc3029ee8293666c268103 Mon Sep 17 00:00:00 2001 From: Joe Kearney Date: Sun, 30 Nov 2025 14:55:11 -0600 Subject: [PATCH] Trimmed whitespace. --- components/Audio/I2S_Audio.c | 2 +- components/Audio/I2S_Audio.h | 2 +- components/BLE/BLE.c | 2 +- components/BLE/BLE.h | 2 +- components/IR/IR.c | 2 +- components/IR/IR.h | 2 +- components/MuxedLedStrip/src/muxed_led_strip_api.c | 1 - components/NVM/Key_Value.h | 2 +- components/NVM/SPIFFS.c | 2 +- components/NVM/SPIFFS.h | 2 +- components/NVM/Settings.c | 1 - components/NVM/USB.c | 2 +- components/Reprogramming/Reprogramming.c | 2 +- components/Reprogramming/Reprogramming.h | 2 +- components/SystemK | 2 +- components/System_Events/System_Events.h | 2 +- main/HW_NeoPixels.c | 1 - main/HW_NeoPixels.h | 2 +- main/Version.h | 2 +- 19 files changed, 16 insertions(+), 19 deletions(-) diff --git a/components/Audio/I2S_Audio.c b/components/Audio/I2S_Audio.c index 4ef08cd..007528c 100644 --- a/components/Audio/I2S_Audio.c +++ b/components/Audio/I2S_Audio.c @@ -510,4 +510,4 @@ void I2SAudioTask(void *pvParameters) } } } -} \ No newline at end of file +} diff --git a/components/Audio/I2S_Audio.h b/components/Audio/I2S_Audio.h index cba3c70..58be48a 100644 --- a/components/Audio/I2S_Audio.h +++ b/components/Audio/I2S_Audio.h @@ -23,4 +23,4 @@ #include "esp_err.h" void Initialize_Audio(void); -esp_err_t Play_WAV_File(char * filename); \ No newline at end of file +esp_err_t Play_WAV_File(char * filename); diff --git a/components/BLE/BLE.c b/components/BLE/BLE.c index 5b67a7b..f0e1dd6 100644 --- a/components/BLE/BLE.c +++ b/components/BLE/BLE.c @@ -479,4 +479,4 @@ SystemKResult_T BLE_Unquiet(void) } return result; -} \ No newline at end of file +} diff --git a/components/BLE/BLE.h b/components/BLE/BLE.h index 5b50bf5..6b3a4a1 100644 --- a/components/BLE/BLE.h +++ b/components/BLE/BLE.h @@ -23,4 +23,4 @@ #include "esp_err.h" void Initialize_BLE(void); -void Disable_BLE(void); \ No newline at end of file +void Disable_BLE(void); diff --git a/components/IR/IR.c b/components/IR/IR.c index e1d1ce0..e4e4e67 100644 --- a/components/IR/IR.c +++ b/components/IR/IR.c @@ -442,4 +442,4 @@ void Disable_IR_Transmit() { gpio_set_level(IR_TX_RIGHT_ENABLE, 1); gpio_set_level(IR_TX_LEFT_ENABLE, 1); -} \ No newline at end of file +} diff --git a/components/IR/IR.h b/components/IR/IR.h index 73839d2..a334c9e 100644 --- a/components/IR/IR.h +++ b/components/IR/IR.h @@ -24,4 +24,4 @@ void Initialize_IR(); void Enable_IR_Transmit(); -void Disable_IR_Transmit(); \ No newline at end of file +void Disable_IR_Transmit(); diff --git a/components/MuxedLedStrip/src/muxed_led_strip_api.c b/components/MuxedLedStrip/src/muxed_led_strip_api.c index b8d7c1a..e4976a2 100644 --- a/components/MuxedLedStrip/src/muxed_led_strip_api.c +++ b/components/MuxedLedStrip/src/muxed_led_strip_api.c @@ -94,4 +94,3 @@ esp_err_t muxed_led_strip_del(muxed_led_strip_handle_t strip) ESP_RETURN_ON_FALSE(strip, ESP_ERR_INVALID_ARG, TAG, "invalid argument"); return strip->del(strip); } - diff --git a/components/NVM/Key_Value.h b/components/NVM/Key_Value.h index bbc00d6..2067406 100644 --- a/components/NVM/Key_Value.h +++ b/components/NVM/Key_Value.h @@ -30,4 +30,4 @@ SystemKResult_T KV_Get_Value_uint32(const char *filename, const char *search_key SystemKResult_T KV_Set_Value_uint32(const char *filename, const char *set_key, uint32_t *set_value); SystemKResult_T KV_Get_Value_uint8(const char *filename, const char *search_key, uint8_t *value); -SystemKResult_T KV_Set_Value_uint8(const char *filename, const char *set_key, uint8_t *set_value); \ No newline at end of file +SystemKResult_T KV_Set_Value_uint8(const char *filename, const char *set_key, uint8_t *set_value); diff --git a/components/NVM/SPIFFS.c b/components/NVM/SPIFFS.c index fe324f1..459ec5f 100644 --- a/components/NVM/SPIFFS.c +++ b/components/NVM/SPIFFS.c @@ -84,4 +84,4 @@ void Initialize_SPIFFS(void) xEventGroupSetBits(Get_System_Events(), SYS_SPIFFS_READY); KLOG_INFO(TAG, "SPIFFS initialized."); -} \ No newline at end of file +} diff --git a/components/NVM/SPIFFS.h b/components/NVM/SPIFFS.h index 24deb03..bb6ed37 100644 --- a/components/NVM/SPIFFS.h +++ b/components/NVM/SPIFFS.h @@ -23,4 +23,4 @@ void Initialize_SPIFFS(void); -extern const char *DEFAULT_CONFIG_FILE; \ No newline at end of file +extern const char *DEFAULT_CONFIG_FILE; diff --git a/components/NVM/Settings.c b/components/NVM/Settings.c index f496550..eb3f121 100644 --- a/components/NVM/Settings.c +++ b/components/NVM/Settings.c @@ -468,4 +468,3 @@ SystemKResult_T Initialize_Settings(void) return result; } - diff --git a/components/NVM/USB.c b/components/NVM/USB.c index 85f4d1f..080acb5 100644 --- a/components/NVM/USB.c +++ b/components/NVM/USB.c @@ -467,4 +467,4 @@ void Erase_OTA_File(void) { KLOG_ERROR(TAG, "Error erasing the OTA file: %s", strerror(errno)); } -} \ No newline at end of file +} diff --git a/components/Reprogramming/Reprogramming.c b/components/Reprogramming/Reprogramming.c index cc1f0f6..ee0f8e0 100644 --- a/components/Reprogramming/Reprogramming.c +++ b/components/Reprogramming/Reprogramming.c @@ -311,4 +311,4 @@ void Request_Reprogramming_From_USB(void) { KLOG_WARN(TAG, "Reprogramming already in progress."); } -} \ No newline at end of file +} diff --git a/components/Reprogramming/Reprogramming.h b/components/Reprogramming/Reprogramming.h index 16c1a09..d3df3f9 100644 --- a/components/Reprogramming/Reprogramming.h +++ b/components/Reprogramming/Reprogramming.h @@ -19,4 +19,4 @@ * file in the root of this repository. If not, see . */ -void Request_Reprogramming_From_USB(void); \ No newline at end of file +void Request_Reprogramming_From_USB(void); diff --git a/components/SystemK b/components/SystemK index 852dd68..871d706 160000 --- a/components/SystemK +++ b/components/SystemK @@ -1 +1 @@ -Subproject commit 852dd684ad7e52786e5d75b701a89116c52b7060 +Subproject commit 871d70684748992e75f4c6f82cca97aa4392af59 diff --git a/components/System_Events/System_Events.h b/components/System_Events/System_Events.h index 878e3da..60bc97d 100644 --- a/components/System_Events/System_Events.h +++ b/components/System_Events/System_Events.h @@ -41,4 +41,4 @@ EventGroupHandle_t Get_System_Events(void); void Initialize_System_Events(void); bool Wait_For_System_Event(EventBits_t event_bit, const char* timeout_message, uint32_t timeout_ms); -#endif // SYSTEM_EVENTS_H \ No newline at end of file +#endif // SYSTEM_EVENTS_H diff --git a/main/HW_NeoPixels.c b/main/HW_NeoPixels.c index b235ba0..ba2654c 100644 --- a/main/HW_NeoPixels.c +++ b/main/HW_NeoPixels.c @@ -1,4 +1,3 @@ - /* * This program source code file is part of the KTag project, a DIY laser tag * game with customizable features and wide interoperability. diff --git a/main/HW_NeoPixels.h b/main/HW_NeoPixels.h index 8385a9e..51934fd 100644 --- a/main/HW_NeoPixels.h +++ b/main/HW_NeoPixels.h @@ -25,4 +25,4 @@ void Initialize_SystemK_NeoPixels(void); -#endif // HW_NEOPIXELS_H \ No newline at end of file +#endif // HW_NEOPIXELS_H diff --git a/main/Version.h b/main/Version.h index d334e02..581d76a 100644 --- a/main/Version.h +++ b/main/Version.h @@ -30,4 +30,4 @@ #define VERSION_STRING(major, minor) STRINGIFY(major) "." STRINGIFY(minor) #define VERSION_AS_STR() "Version " VERSION_STRING(VERSION_MAJOR, VERSION_MINOR) " " __DATE__ " " __TIME__ -#endif // VERSION_H \ No newline at end of file +#endif // VERSION_H