599fa46766
- New drivers: - SD SPI - spi_peripheral - touch_placeholder - display_placeholder - Devicetree compiler: - Implement phandle-arrays - Implement device addresses - Add placeholder drivers to all devices with a SPI display - SPI driver: add `cs-pins` and set them to high on driver start - FileSystem: add `file_system_set_owner()` and `file_system_get_owner()` - File locking is now checking if the related `FileSystem` is part of a shared SPI bus - Add `device_get_child_count()` - SDMMC driver: Remove default of `slot` value - Fix for Crowpanel Basic 3.5" display (add delay to booting) - Fix for LilyGO T-HMI SD card mounting (delayed mounting by disabling it initially in the dts)
63 lines
1.1 KiB
C
63 lines
1.1 KiB
C
// Default headers
|
|
#include <tactility/device.h>
|
|
#include <tactility/dts.h>
|
|
#include <tactility/module.h>
|
|
// DTS headers
|
|
#include <test_include.h>
|
|
|
|
static const root_config_dt root_config = {
|
|
"Test Model"
|
|
};
|
|
|
|
static struct Device root = {
|
|
.address = 0,
|
|
.name = "/",
|
|
.config = &root_config,
|
|
.parent = NULL,
|
|
.internal = NULL
|
|
};
|
|
|
|
static const generic_device_config_dt test_device_config = {
|
|
0,
|
|
42,
|
|
"hello"
|
|
};
|
|
|
|
static struct Device test_device = {
|
|
.address = 0,
|
|
.name = "test-device",
|
|
.config = &test_device_config,
|
|
.parent = &root,
|
|
.internal = NULL
|
|
};
|
|
|
|
static const bool_device_config_dt bool_test_device_config = {
|
|
true,
|
|
false,
|
|
true,
|
|
true,
|
|
true
|
|
};
|
|
|
|
static struct Device bool_test_device = {
|
|
.address = 0,
|
|
.name = "bool-test-device",
|
|
.config = &bool_test_device_config,
|
|
.parent = &root,
|
|
.internal = NULL
|
|
};
|
|
|
|
struct DtsDevice dts_devices[] = {
|
|
{ &root, "test,root", DTS_DEVICE_STATUS_OKAY },
|
|
{ &test_device, "test,generic-device", DTS_DEVICE_STATUS_OKAY },
|
|
{ &bool_test_device, "test,bool-device", DTS_DEVICE_STATUS_OKAY },
|
|
DTS_DEVICE_TERMINATOR
|
|
};
|
|
|
|
extern struct Module data_module;
|
|
|
|
struct Module* dts_modules[] = {
|
|
&data_module,
|
|
NULL
|
|
};
|