ST7789: Expose send_cmd and send_data to the user

This commit is contained in:
C47D 2021-05-09 21:31:32 -05:00
parent 147cacc0af
commit 23907711ca
2 changed files with 5 additions and 4 deletions

View file

@ -114,6 +114,9 @@ void st7789_init(void);
void st7789_flush(lv_disp_drv_t *drv, const lv_area_t *area, lv_color_t *color_map);
void st7789_enable_backlight(bool backlight);
void st7789_send_cmd(uint8_t cmd);
void st7789_send_data(void *data, uint16_t length);
#ifdef __cplusplus
} /* extern "C" */
#endif