You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

42 lines
1.0 KiB
C

#include "oracle.h"
#include "p_usart.h"
#include "p_i2c.h"
#include "p_gpio.h"
#include "p_time.h"
#include "lvgl.h"
#include "p_ssd1963.h"
static lv_disp_buf_t disp_buf;
static lv_color_t buf[LV_HOR_RES_MAX * 10]; /*Declare a buffer for 10 lines*/
void oracle_init(void)
{
system_init();
system_interrupt_enable_global();
p_usart_init();
p_i2c_init();
p_gpio_init();
p_time_init();
lv_init();
ssd1963_init();
lv_disp_buf_init(&disp_buf, buf, NULL, LV_HOR_RES_MAX * 10); /*Initialize the display buffer*/
lv_disp_drv_t disp_drv; /*Descriptor of a display driver*/
lv_disp_drv_init(&disp_drv); /*Basic initialization*/
disp_drv.flush_cb = ssd1963_flush; /*Set your driver function*/
disp_drv.buffer = &disp_buf; /*Assign the buffer to the display*/
lv_disp_drv_register(&disp_drv); /*Finally register the driver*/
p_debug_start_service();
}
void oracle_service(void)
{
delay_ms(1);
lv_task_handler();
}