We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1015e4f commit acbfd80Copy full SHA for acbfd80
Boards/WaveshareS3TouchLcd128/Source/WaveshareS3TouchLcd128.cpp
@@ -33,8 +33,8 @@ extern const Configuration waveshare_s3_touch_lcd_128 = {
33
.mode = I2C_MODE_MASTER,
34
.sda_io_num = GPIO_NUM_6,
35
.scl_io_num = GPIO_NUM_7,
36
- .sda_pullup_en = true,
37
- .scl_pullup_en = true,
+ .sda_pullup_en = false,
+ .scl_pullup_en = false,
38
.master = {
39
.clk_speed = 400000
40
},
Boards/WaveshareS3TouchLcd128/Source/devices/Display.cpp
@@ -11,9 +11,7 @@ std::shared_ptr<tt::hal::touch::TouchDevice> _Nullable createTouch() {
11
240,
12
false,
13
true,
14
- false,
15
- GPIO_NUM_13,
16
- GPIO_NUM_5
+ false
17
);
18
19
return std::make_shared<Cst816sTouch>(std::move(configuration));
0 commit comments