You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
495 B
26 lines
495 B
/*
|
|
* Copyright (c) 2019, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include "platform.h"
|
|
#if PL_CONFIG_USE_GUI
|
|
#include "lcd.h"
|
|
#include "McuGDisplaySSD1306.h"
|
|
|
|
void LCD_UpdateRegion(int x, int y, int w, int h) {
|
|
McuGDisplaySSD1306_UpdateRegion(x, y, w, h);
|
|
//McuGDisplaySSD1306_UpdateFull();
|
|
}
|
|
void LCD_SetPixel(int x, int y, int color) {
|
|
McuGDisplaySSD1306_PutPixel(x, y, color);
|
|
}
|
|
|
|
void LCD_Init(void) {
|
|
}
|
|
|
|
void LCD_Deinit(void) {
|
|
}
|
|
|
|
#endif /* PL_CONFIG_USE_LCD */
|
|
|