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 ec342dc commit ce350cbCopy full SHA for ce350cb
ports/raspberrypi/boards/lilygo_t_display_rp2040/board.c
@@ -27,11 +27,8 @@
27
#include "supervisor/board.h"
28
#include "mpconfigboard.h"
29
#include "shared-bindings/microcontroller/Pin.h"
30
-#include "shared-bindings/busio/SPI.h"
31
-#include "shared-bindings/displayio/FourWire.h"
32
#include "shared-module/displayio/__init__.h"
33
#include "shared-module/displayio/mipi_constants.h"
34
-#include "supervisor/shared/board.h"
35
36
displayio_fourwire_obj_t board_display_obj;
37
@@ -77,8 +74,8 @@ static void display_init(void) {
77
74
spi,
78
75
&pin_GPIO2, // CLK
79
76
&pin_GPIO3, // MOSI
80
- NULL // MISO not connected
81
- );
+ NULL, // MISO not connected
+ false); // Not half-duplex
82
83
common_hal_busio_spi_never_reset(spi);
84
0 commit comments