Rename device modules (#470)

Standardised device module identifiers across all supported devices to use consistent naming conventions with lowercase alphanumeric and hyphen-separated formats.
This commit is contained in:
Ken Van Hoeylandt
2026-01-31 13:11:36 +01:00
committed by GitHub
parent 399dca5e14
commit 5993ceb232
44 changed files with 44 additions and 44 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ static error_t stop() {
/** @warning The variable name must be exactly "device_module" */
struct Module device_module = {
.name = "Module",
.name = "generic-esp32p4",
.start = start,
.stop = stop
};