feat(rlcd): add Waveshare ST7305 board support
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
#include <tactility/driver.h>
|
||||
#include <tactility/module.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
extern Driver st7305_driver;
|
||||
|
||||
static Driver* const st7305_drivers[] = {
|
||||
&st7305_driver,
|
||||
nullptr
|
||||
};
|
||||
|
||||
Module st7305_module = {
|
||||
.name = "st7305",
|
||||
.drivers = st7305_drivers
|
||||
};
|
||||
|
||||
} // extern "C"
|
||||
Reference in New Issue
Block a user