rebase, fix call to common_hal_busio_spi_construct

This commit is contained in:
Neradoc 2022-02-16 05:05:06 +01:00
parent b1a55e3904
commit 139c2710aa
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ static void display_init(void) {
spi,
&pin_GPIO34, // CLK
&pin_GPIO33, // MOSI
NULL // MISO not connected
);
NULL, // MISO not connected
false); // Not half-duplex
common_hal_busio_spi_never_reset(spi);