Audio System + Drivers (#562)
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
#include <tactility/check.h>
|
||||
#include <tactility/driver.h>
|
||||
#include <tactility/module.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
extern Driver es8311_driver;
|
||||
|
||||
static error_t start() {
|
||||
check(driver_construct_add(&es8311_driver) == ERROR_NONE);
|
||||
return ERROR_NONE;
|
||||
}
|
||||
|
||||
static error_t stop() {
|
||||
check(driver_remove_destruct(&es8311_driver) == ERROR_NONE);
|
||||
return ERROR_NONE;
|
||||
}
|
||||
|
||||
extern const ModuleSymbol es8311_module_symbols[];
|
||||
|
||||
Module es8311_module = {
|
||||
.name = "es8311",
|
||||
.start = start,
|
||||
.stop = stop,
|
||||
.symbols = es8311_module_symbols,
|
||||
.internal = nullptr
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user