From 8036c7a47ae918493e1d75e6e6bd11dc33e0e312 Mon Sep 17 00:00:00 2001 From: Maciej Sliwinski Date: Fri, 10 Mar 2023 14:34:07 +0100 Subject: [PATCH] Header update --- drivers/i2c/i2c.cpp | 9 +++++++++ drivers/i2c/i2c.hpp | 9 +++++++++ src/main.cpp | 1 - 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/drivers/i2c/i2c.cpp b/drivers/i2c/i2c.cpp index e434568..8de3c43 100644 --- a/drivers/i2c/i2c.cpp +++ b/drivers/i2c/i2c.cpp @@ -1,3 +1,12 @@ +/** + * @file main.cpp + * @author Maciej Sliwinski + * @brief This file is a part of time_tracker_esp32 project. + * + * The code is distributed under the MIT License. + * See the LICENCE file for more details. + */ + #include "i2c.hpp" #define I2C_MASTER_FREQ_HZ 400000 diff --git a/drivers/i2c/i2c.hpp b/drivers/i2c/i2c.hpp index 424bf55..662de0f 100644 --- a/drivers/i2c/i2c.hpp +++ b/drivers/i2c/i2c.hpp @@ -1,3 +1,12 @@ +/** + * @file main.cpp + * @author Maciej Sliwinski + * @brief This file is a part of time_tracker_esp32 project. + * + * The code is distributed under the MIT License. + * See the LICENCE file for more details. + */ + #pragma once #include "driver/i2c.h" diff --git a/src/main.cpp b/src/main.cpp index 521b9b1..72efa40 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,7 +7,6 @@ * See the LICENCE file for more details. */ - #include "appManagement.hpp" #include "nvs.hpp"