mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* **New Features** * ESP32 I2S controller support: runtime-configurable digital audio I/O with read/write/set/get operations and multiple formats. * **Board Support** * LilyGO T-Deck device tree entry added to enable I2S peripheral pin configuration. * **Documentation** * New/updated bindings and descriptors for I2S, I2C, GPIO, and root nodes. * **Other** * Added GPIO "no pin" sentinel and exposed I2S controller API symbols.
43 lines
790 B
Plaintext
43 lines
790 B
Plaintext
/dts-v1/;
|
|
|
|
#include <tactility/bindings/root.h>
|
|
#include <tactility/bindings/esp32_gpio.h>
|
|
#include <tactility/bindings/esp32_i2c.h>
|
|
#include <tactility/bindings/esp32_i2s.h>
|
|
|
|
/ {
|
|
compatible = "root";
|
|
model = "LilyGO T-Deck";
|
|
|
|
gpio0 {
|
|
compatible = "espressif,esp32-gpio";
|
|
gpio-count = <49>;
|
|
};
|
|
|
|
i2s0 {
|
|
compatible = "espressif,esp32-i2s";
|
|
port = <I2S_NUM_0>;
|
|
pin-bclk = <7>;
|
|
pin-ws = <5>;
|
|
pin-data-out = <6>;
|
|
pin-data-in = <GPIO_PIN_NONE>;
|
|
pin-mclk = <GPIO_PIN_NONE>;
|
|
};
|
|
|
|
i2c_internal {
|
|
compatible = "espressif,esp32-i2c";
|
|
port = <I2C_NUM_0>;
|
|
clock-frequency = <400000>;
|
|
pin-sda = <18>;
|
|
pin-scl = <8>;
|
|
};
|
|
|
|
i2c_external {
|
|
compatible = "espressif,esp32-i2c";
|
|
port = <I2C_NUM_1>;
|
|
clock-frequency = <400000>;
|
|
pin-sda = <43>;
|
|
pin-scl = <44>;
|
|
};
|
|
};
|