mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-06-19 12:25:05 +00:00
* Optional internal pull-ups for SD/MMC pins in DTS * Selectable on‑chip LDO channel for SD/MMC power (can be disabled) * Added several sensor/driver modules to generic ESP32 device configurations so that they become part of the SDKs * SD card mount now prints card information for clearer diagnostics * Fix for bug DTS boolean parsing. Improved tests to catch these issues. * Expanded SDK integration test to include new modules and headers * Modularized packaging to generate per‑module build files and include driver assets
18 lines
334 B
C
18 lines
334 B
C
#pragma once
|
|
#include <tactility/error.h>
|
|
#include <tactility/dts.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Array of device tree modules terminated with DTS_MODULE_TERMINATOR
|
|
extern struct DtsDevice dts_devices[];
|
|
|
|
// Array of module symbols terminated with NULL
|
|
extern struct Module* dts_modules[];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|