File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
ext_mod/lcd_bus/esp32_src Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,9 @@ def __init__(self, size):
43
43
if not os .path .exists ('build' ):
44
44
os .mkdir ('build' )
45
45
46
- self .save_file_path = f'{ SCRIPT_DIR } /build/partitions-{ flash_size } MiB.csv'
46
+ self .save_file_path = (
47
+ f'{ SCRIPT_DIR } /build/partitions-{ flash_size } MiB.'
48
+ )
47
49
self .first_offset = 0x9000
48
50
self .nvs = 0x6000
49
51
self .phy_init = 0x1000
Original file line number Diff line number Diff line change 94
94
IRAM_ATTR static bool rgb_bus_trans_done_cb (esp_lcd_panel_handle_t panel , const esp_lcd_rgb_panel_event_data_t * edata , void * user_ctx )
95
95
{
96
96
LCD_UNUSED (edata );
97
- rgb_panel_t * rgb_panel = __containerof (panel , rgb_panel_t , base );
97
+ LCD_UNUSED (panel );
98
+
99
+ // rgb_panel_t *rgb_panel = __containerof(panel, rgb_panel_t, base);
98
100
99
101
mp_lcd_rgb_bus_obj_t * self = (mp_lcd_rgb_bus_obj_t * )user_ctx ;
100
102
bool ret = false;
You can’t perform that action at this time.
0 commit comments