Skip to content

Commit bb2ea74

Browse files
committed
sdkconfig: add pdm output mode and st7789 panel config
1 parent 6f9c16d commit bb2ea74

File tree

1 file changed

+19
-9
lines changed

1 file changed

+19
-9
lines changed

main/Kconfig.projbuild

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,41 +10,51 @@ choice I2S_OUTPUT
1010
prompt "I2S Output"
1111
default I2S_OUTPUT_EXTERNAL_I2S
1212
help
13-
Select to use Internal DAC or External I2S CODEC
13+
Select to use which output interface
1414

1515
config I2S_OUTPUT_INTERNAL_DAC
1616
bool "Internal DAC"
1717
help
1818
Select this to use Internal DAC output
1919

20+
config I2S_OUTPUT_PDM
21+
bool "PDM"
22+
help
23+
Select this to use PDM output
24+
2025
config I2S_OUTPUT_EXTERNAL_I2S
2126
bool "External I2S CODEC"
2227
help
2328
Select this to use External I2S output
2429

2530
endchoice
2631

27-
choice OLED_PANEL
28-
prompt "OLED Panel"
29-
default OLED_PANEL_NONE
32+
choice SCREEN_PANEL
33+
prompt "Screen Panel"
34+
default SCREEN_PANEL_NONE
3035
help
31-
Select to use which OLED Panel
36+
Select to use which screen panel
3237

33-
config OLED_PANEL_NONE
34-
bool "None OLED Panel"
38+
config SCREEN_PANEL_NONE
39+
bool "None Screen Panel"
3540
help
3641
Select this to disable GUI
3742

38-
config OLED_PANEL_SSD1331
43+
config SCREEN_PANEL_SSD1331
3944
bool "SSD1331 96x64 OLED Panel"
4045
help
4146
Select this to use SSD1331 96x64 OLED Panel
4247

43-
config OLED_PANEL_SSD1351
48+
config SCREEN_PANEL_SSD1351
4449
bool "SSD1351 128x128 OLED Panel"
4550
help
4651
Select this to use SSD1351 128x128 OLED Panel
4752

53+
config SCREEN_PANEL_ST7789
54+
bool "ST7789 240x240 IPS LCD Panel"
55+
help
56+
Select this to use ST7789 240x240 IPS LCD Panel
57+
4858
endchoice
4959

5060
endmenu

0 commit comments

Comments
 (0)