Skip to content

Commit e99aeba

Browse files
committed
adds missing includes
1 parent 252e617 commit e99aeba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ext_mod/lcd_bus/esp32_src/rgb_bus.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include "modlcd_bus.h"
88
#include "rgb_bus.h"
99

10-
// esp-idf includes
1110
#include "hal/lcd_hal.h"
1211
#include "esp_pm.h"
1312
#include "esp_intr_alloc.h"
@@ -18,13 +17,18 @@
1817
#include "esp_lcd_panel_ops.h"
1918
#include "esp_lcd_panel_interface.h"
2019
#include "esp_lcd_panel_rgb.h"
20+
#include "esp_cpu.h"
21+
#include "esp_system.h"
22+
#include "rom/ets_sys.h"
2123

2224
// micropython includes
2325
#include "mphalport.h"
2426
#include "py/obj.h"
2527
#include "py/runtime.h"
2628
#include "py/objarray.h"
2729
#include "py/binary.h"
30+
#include "py/stackctrl.h"
31+
#include "py/gc.h"
2832

2933
// stdlib includes
3034
#include <string.h>

0 commit comments

Comments
 (0)