Add #pragma once to ESP32 headers

This commit is contained in:
2025-12-13 12:30:49 +01:00
parent 14fc015d1b
commit 1c21ddee89
5 changed files with 13 additions and 2 deletions
+6
View File
@@ -1,6 +1,12 @@
#ifndef I2C_HPP
#define I2C_HPP
#pragma once
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
extern TaskHandle_t i2c_task;
void i2cTask(void *pvParameters);
#endif