fix(styling): Remove whitespace, unnecesary header and add comment

This commit is contained in:
2025-11-03 12:50:06 +01:00
parent d26e428f99
commit 5c52b94876
2 changed files with 1 additions and 4 deletions

View File

@@ -1,6 +1,4 @@
#include "mpu6886.h"
#include <string.h>
#ifdef CONFIG_ENV_MQTT_ENABLED
static void wifi_init()

View File

@@ -14,7 +14,6 @@
#include <string.h>
#include <stdio.h>
#define I2C_MASTER_SCL_IO CONFIG_I2C_MASTER_SCL /*!< GPIO number used for I2C master clock */
#define I2C_MASTER_SDA_IO CONFIG_I2C_MASTER_SDA /*!< GPIO number used for I2C master data */
#define I2C_MASTER_NUM I2C_NUM_0 /*!< I2C port number for master dev */
@@ -50,7 +49,7 @@
// Scale factors
#define SF_M_S2 9.80665f
#define SF_RAD_S 0.017453292519943f
#define SF_RAD_S 0.017453292519943f // pi/180
typedef struct {
float x;