123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #include <sys/byteorder.h>
- #include "panel_device.h"
- #include <logging/log.h>
- LOG_MODULE_DECLARE(lcd_panel, CONFIG_DISPLAY_LOG_LEVEL);
- static int _panel_init(const struct device *dev)
- {
- return 0;
- }
- static const struct lcd_panel_ops lcd_panel_ops = {
- .init = _panel_init,
- };
- const struct lcd_panel_config lcd_panel_lpm015m135a_config = {
- .videoport = PANEL_VIDEO_PORT_INITIALIZER,
- .videomode = PANEL_VIDEO_MODE_INITIALIZER,
- .ops = &lcd_panel_ops,
- .tw_reset = 10,
- .ts_reset = 120,
- };
|