Skip to content

Commit fc6af85

Browse files
committed
I might have found the issue with the RGB driver.
1 parent 23d9a65 commit fc6af85

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ext_mod/lcd_bus/src/common/sw_rotate_task_common.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ void mp_lcd_sw_rotate_task(void *self_in)
2424

2525
LCD_DEBUG_PRINT("mp_lcd_sw_rotate_task - starting bus init\n")
2626
if (!init->cb(self_in)) {
27-
init->err
2827
LCD_DEBUG_PRINT(init->err_msg, init->err)
2928
LCD_DEBUG_PRINT("mp_lcd_sw_rotate_task - bus init FAILURE, releasing init lock\n")
3029
mp_lcd_lock_release(&handles->init_lock);

ext_mod/lcd_bus/src/esp32/sw_rotate_task.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,16 @@ bool mp_lcd_start_rotate_task(void *self_in)
117117
{
118118
mp_lcd_bus_obj_t *self = (mp_lcd_bus_obj_t *)self_in;
119119

120-
LCD_DEBUG_PRINT("mp_lcd_start_rotate_task m- acquiring init lock\n")
120+
LCD_DEBUG_PRINT("mp_lcd_start_rotate_task - acquiring init lock\n")
121121
mp_lcd_lock_acquire(&self->sw_rot.handles.init_lock);
122122

123123
xTaskCreatePinnedToCore(
124124
mp_lcd_sw_rotate_task, "rotate_task", LCD_DEFAULT_STACK_SIZE / sizeof(StackType_t),
125125
self, ESP_TASK_PRIO_MAX - 1, &self->sw_rot.handles.task_handle, 0);
126126

127127
LCD_DEBUG_PRINT("mp_lcd_start_rotate_task - acquiring init lock\n")
128-
129128
mp_lcd_lock_acquire(&self->sw_rot.handles.init_lock);
129+
130130
LCD_DEBUG_PRINT("mp_lcd_start_rotate_task - releasing init lock\n")
131131
mp_lcd_lock_release(&self->sw_rot.handles.init_lock);
132132

0 commit comments

Comments
 (0)