From 014bd1673c0a468e2fea79b7c73246798cde8cc2 Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Fri, 6 Feb 2026 00:34:34 +0100 Subject: [PATCH] Delete file --- devicetree.c | 64 ---------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 devicetree.c diff --git a/devicetree.c b/devicetree.c deleted file mode 100644 index c675bd3f..00000000 --- a/devicetree.c +++ /dev/null @@ -1,64 +0,0 @@ -// Default headers -#include -// DTS headers -#include -#include -#include -#include - -static const root_config_dt root_config = { - "LilyGO T-Deck" -}; - -static struct Device root = { - .name = "/", - .config = &root_config, - .parent = NULL, -}; - -static const esp32_i2s_config_dt i2s0_config = { - I2S_NUM_0, - 7, - 5, - 6, - GPIO_PIN_NONE, - GPIO_PIN_NONE -}; - -static struct Device i2s0 = { - .name = "i2s0", - .config = &i2s0_config, - .parent = &root, -}; - -static const esp32_i2c_config_dt i2c0_config = { - I2C_NUM_0, - 400000, - 18, - 8, - 0, - 0 -}; - -static struct Device i2c0 = { - .name = "i2c0", - .config = &i2c0_config, - .parent = &root, -}; - -static const esp32_i2c_config_dt i2c1_config = { - I2C_NUM_1, - 400000, - 43, - 44, - 0, - 0 -}; - -static struct Device i2c1 = { - .name = "i2c1", - .config = &i2c1_config, - .parent = &root, -}; - -static const esp32_gpio_config_dt gpio0_config = {