Skip to content

Commit 3684640

Browse files
authored
Merge pull request #8430 from jepler/dotclock-enhancements
Dotclock enhancements
2 parents 44d27cb + 3d3061f commit 3684640

File tree

12 files changed

+176
-41
lines changed

12 files changed

+176
-41
lines changed

ports/espressif/boards/adafruit_qualia_s3_rgb666/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ CIRCUITPY_ESP_FLASH_FREQ = 80m
1111

1212
CIRCUITPY_ESP_PSRAM_SIZE = 8MB
1313
CIRCUITPY_ESP_PSRAM_MODE = opi
14-
CIRCUITPY_ESP_PSRAM_FREQ = 80m
14+
CIRCUITPY_ESP_PSRAM_FREQ = 120m
1515

1616
CIRCUITPY_DOTCLOCKFRAMEBUFFER = 1

ports/espressif/boards/adafruit_qualia_s3_rgb666/pins.c

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
#include "py/objtuple.h"
22
#include "shared-bindings/board/__init__.h"
33

4+
#define MP_DEFINE_BYTES_OBJ(obj_name, bin) mp_obj_str_t obj_name = {{&mp_type_bytes}, 0, sizeof(bin) - 1, (const byte *)bin}
5+
6+
static const char i2c_bus_init_sequence[] = {
7+
2, 3, 0x78, // set GPIO direction
8+
2, 2, 0, // disable all output inversion
9+
0, // trailing NUL for python bytes() representation
10+
};
11+
STATIC MP_DEFINE_BYTES_OBJ(i2c_init_byte_obj, i2c_bus_init_sequence);
12+
13+
STATIC const mp_rom_map_elem_t tft_io_expander_table[] = {
14+
{ MP_ROM_QSTR(MP_QSTR_i2c_address), MP_ROM_INT(0x3f)},
15+
{ MP_ROM_QSTR(MP_QSTR_gpio_address), MP_ROM_INT(1)},
16+
{ MP_ROM_QSTR(MP_QSTR_gpio_data_len), MP_ROM_INT(1)},
17+
{ MP_ROM_QSTR(MP_QSTR_gpio_data), MP_ROM_INT(0xFD)},
18+
{ MP_ROM_QSTR(MP_QSTR_cs_bit), MP_ROM_INT(1)},
19+
{ MP_ROM_QSTR(MP_QSTR_mosi_bit), MP_ROM_INT(7)},
20+
{ MP_ROM_QSTR(MP_QSTR_clk_bit), MP_ROM_INT(0)},
21+
{ MP_ROM_QSTR(MP_QSTR_reset_bit), MP_ROM_INT(2)},
22+
{ MP_ROM_QSTR(MP_QSTR_i2c_init_sequence), &i2c_init_byte_obj},
23+
};
24+
MP_DEFINE_CONST_DICT(tft_io_expander_dict, tft_io_expander_table);
25+
426
STATIC const mp_rom_obj_tuple_t tft_r_pins = {
527
{&mp_type_tuple},
628
5,
@@ -52,8 +74,8 @@ MP_DEFINE_CONST_DICT(tft_dict, tft_table);
5274
STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
5375
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
5476

55-
{ MP_ROM_QSTR(MP_QSTR_TFT), MP_ROM_PTR(&tft_dict) },
56-
77+
{ MP_ROM_QSTR(MP_QSTR_TFT_PINS), MP_ROM_PTR(&tft_dict) },
78+
{ MP_ROM_QSTR(MP_QSTR_TFT_IO_EXPANDER), MP_ROM_PTR(&tft_io_expander_dict) },
5779
{ MP_ROM_QSTR(MP_QSTR_NEOPIXEL), MP_ROM_PTR(MICROPY_HW_NEOPIXEL) },
5880

5981
{ MP_ROM_QSTR(MP_QSTR_TX), MP_ROM_PTR(&pin_GPIO43) },

ports/espressif/boards/espressif_esp32s3_lcd_ev/board.c

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
#include "shared-bindings/framebufferio/FramebufferDisplay.h"
3434
#include "shared-bindings/microcontroller/Pin.h"
3535
#include "shared-module/displayio/__init__.h"
36+
#include "boards/espressif_esp32s3_lcd_ev/board.h"
37+
38+
#define MP_DEFINE_BYTES_OBJ(obj_name, bin) mp_obj_str_t obj_name = {{&mp_type_bytes}, 0, sizeof(bin) - 1, (const byte *)bin}
3639

3740
static const uint8_t display_init_sequence[] = {
3841
0xf0, 5, 0x55, 0xaa, 0x52, 0x08, 0x00,
@@ -80,8 +83,17 @@ static const uint8_t display_init_sequence[] = {
8083
0x3a, 1, 0x66,
8184
0x3a, 1, 0x66,
8285
0x11, 0x80, 120,
83-
0x29, 0x0
86+
0x29, 0x0,
87+
0, // trailing NUL for Python bytes() representation
88+
};
89+
MP_DEFINE_BYTES_OBJ(display_init_byte_obj, display_init_sequence);
90+
91+
static const char i2c_bus_init_sequence[] = {
92+
2, 3, 0xf1, // set GPIO direction
93+
2, 2, 0, // disable all output inversion
94+
0, // trailing NUL for Python bytes() representation
8495
};
96+
MP_DEFINE_BYTES_OBJ(i2c_init_byte_obj, i2c_bus_init_sequence);
8597

8698
static const mcu_pin_obj_t *red_pins[] = {
8799
&pin_GPIO1, &pin_GPIO2, &pin_GPIO42, &pin_GPIO41, &pin_GPIO40
@@ -103,7 +115,7 @@ void board_init(void) {
103115
/* hsync */ &pin_GPIO46,
104116
/* dclk */ &pin_GPIO9,
105117
/* data */ red_pins, MP_ARRAY_SIZE(red_pins), green_pins, MP_ARRAY_SIZE(green_pins), blue_pins, MP_ARRAY_SIZE(blue_pins),
106-
/* frequency */ 6500000,
118+
/* frequency */ 12000000,
107119
/* width x height */ 480, 480,
108120
/* horizontal: pulse, back & front porch, idle */ 13, 20, 40, false,
109121
/* vertical: pulse, back & front porch, idle */ 15, 20, 40, false,
@@ -127,20 +139,6 @@ void board_init(void) {
127139
common_hal_busio_i2c_construct(&i2c, DEFAULT_I2C_BUS_SCL, DEFAULT_I2C_BUS_SDA, 400000, 255);
128140
const int i2c_device_address = 32;
129141

130-
common_hal_busio_i2c_try_lock(&i2c);
131-
132-
{
133-
uint8_t buf[2] = {3, 0xf1}; // set GPIO direction
134-
common_hal_busio_i2c_write(&i2c, i2c_device_address, buf, sizeof(buf));
135-
}
136-
137-
{
138-
uint8_t buf[2] = {2, 0}; // set all output pins low initially
139-
common_hal_busio_i2c_write(&i2c, i2c_device_address, buf, sizeof(buf));
140-
}
141-
142-
common_hal_busio_i2c_unlock(&i2c);
143-
144142
dotclockframebuffer_ioexpander_spi_bus spibus = {
145143
.bus = &i2c,
146144
.i2c_device_address = i2c_device_address,
@@ -151,7 +149,9 @@ void board_init(void) {
151149
.clk_mask = 0x100 << 2,
152150
};
153151

154-
dotclockframebuffer_ioexpander_send_init_sequence(&spibus, display_init_sequence, sizeof(display_init_sequence));
152+
static const mp_buffer_info_t bufinfo_display_init = { (void *)display_init_sequence, sizeof(display_init_sequence) - 1 };
153+
static const mp_buffer_info_t bufinfo_i2c_bus_init = { (void *)i2c_bus_init_sequence, sizeof(i2c_bus_init_sequence) - 1 };
154+
dotclockframebuffer_ioexpander_send_init_sequence(&spibus, &bufinfo_i2c_bus_init, &bufinfo_display_init);
155155

156156
common_hal_busio_i2c_deinit(&i2c);
157157
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* This file is part of the MicroPython project, http://micropython.org/
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright (c) 2023 Jeff Epler for Adafruit Industries
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy
9+
* of this software and associated documentation files (the "Software"), to deal
10+
* in the Software without restriction, including without limitation the rights
11+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
* copies of the Software, and to permit persons to whom the Software is
13+
* furnished to do so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in
16+
* all copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
* THE SOFTWARE.
25+
*/
26+
27+
#pragma once
28+
29+
#include "py/objstr.h"
30+
31+
extern mp_obj_str_t display_init_byte_obj, i2c_init_byte_obj;

ports/espressif/boards/espressif_esp32s3_lcd_ev/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ CIRCUITPY_ESP_FLASH_SIZE = 16MB
1111

1212
CIRCUITPY_ESP_PSRAM_SIZE = 8MB
1313
CIRCUITPY_ESP_PSRAM_MODE = opi
14-
CIRCUITPY_ESP_PSRAM_FREQ = 80m
14+
CIRCUITPY_ESP_PSRAM_FREQ = 120m
1515

1616
CIRCUITPY_DOTCLOCKFRAMEBUFFER = 1
1717
UF2_BOOTLOADER = 0

ports/espressif/boards/espressif_esp32s3_lcd_ev/pins.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
#include "py/objtuple.h"
2+
#include "boards/espressif_esp32s3_lcd_ev/board.h"
23
#include "shared-bindings/board/__init__.h"
34
#include "shared-module/displayio/__init__.h"
45

6+
STATIC const mp_rom_map_elem_t tft_io_expander_table[] = {
7+
{ MP_ROM_QSTR(MP_QSTR_i2c_address), MP_ROM_INT(0x20)},
8+
{ MP_ROM_QSTR(MP_QSTR_gpio_address), MP_ROM_INT(1)},
9+
{ MP_ROM_QSTR(MP_QSTR_gpio_data_len), MP_ROM_INT(1)},
10+
{ MP_ROM_QSTR(MP_QSTR_gpio_data), MP_ROM_INT(0xF1)},
11+
{ MP_ROM_QSTR(MP_QSTR_cs_bit), MP_ROM_INT(1)},
12+
{ MP_ROM_QSTR(MP_QSTR_mosi_bit), MP_ROM_INT(3)},
13+
{ MP_ROM_QSTR(MP_QSTR_clk_bit), MP_ROM_INT(2)},
14+
{ MP_ROM_QSTR(MP_QSTR_i2c_init_sequence), &i2c_init_byte_obj},
15+
};
16+
MP_DEFINE_CONST_DICT(tft_io_expander_dict, tft_io_expander_table);
17+
518
STATIC const mp_rom_obj_tuple_t tft_r_pins = {
619
{&mp_type_tuple},
720
5,
@@ -73,6 +86,8 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
7386

7487
{ MP_ROM_QSTR(MP_QSTR_TFT_PINS), MP_ROM_PTR(&tft_pins_dict) },
7588
{ MP_ROM_QSTR(MP_QSTR_TFT_TIMINGS), MP_ROM_PTR(&tft_timings_dict) },
89+
{ MP_ROM_QSTR(MP_QSTR_TFT_IO_EXPANDER), MP_ROM_PTR(&tft_io_expander_dict) },
90+
{ MP_ROM_QSTR(MP_QSTR_TFT_INIT_SEQUENCE), &display_init_byte_obj},
7691

7792
{ MP_ROM_QSTR(MP_QSTR_I2S_SCK), MP_ROM_PTR(&pin_GPIO16) },
7893
{ MP_ROM_QSTR(MP_QSTR_I2S_MCLK), MP_ROM_PTR(&pin_GPIO5) },

ports/espressif/common-hal/busio/I2C.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ void common_hal_busio_i2c_construct(busio_i2c_obj_t *self,
8282
self->sda_pin = sda;
8383
self->scl_pin = scl;
8484
self->i2c_num = peripherals_i2c_get_free_num();
85+
self->has_lock = 0;
8586

8687
if (self->i2c_num == I2C_NUM_MAX) {
8788
mp_raise_ValueError(translate("All I2C peripherals are in use"));

ports/espressif/esp-idf-config/sdkconfig-esp32s3.defaults

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,17 @@ CONFIG_RMT_SUPPRESS_DEPRECATE_WARN=y
5151

5252
# end of Driver Configurations
5353

54+
#
55+
# LCD and Touch Panel
56+
#
57+
#
58+
# LCD Peripheral Configuration
59+
#
60+
CONFIG_LCD_RGB_RESTART_IN_VSYNC=y
61+
# end of LCD Peripheral Configuration
62+
63+
# end of LCD and Touch Panel
64+
5465
#
5566
# ESP System Settings
5667
#

shared-bindings/dotclockframebuffer/__init__.c

Lines changed: 39 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,17 @@
3939
//|
4040
//| def ioexpander_send_init_sequence(
4141
//| bus: busio.I2C,
42+
//| init_sequence: ReadableBuffer,
43+
//| *,
44+
//| i2c_init_sequence: ReadableBuffer,
4245
//| i2c_address: int,
43-
//| reg_addr: int,
44-
//| gpio_data_len: Length,
4546
//| gpio_address: int,
47+
//| gpio_data_len: Length,
4648
//| gpio_data: int,
4749
//| cs_bit: int,
4850
//| mosi_bit: int,
4951
//| clk_bit: int,
50-
//| init_sequence: ReadableBuffer,
52+
//| reset_bit: Optional[int],
5153
//| ):
5254
//| """Send a displayio-style initialization sequence over an I2C I/O expander
5355
//|
@@ -60,30 +62,41 @@
6062
//|
6163
//| Normally this function is used via a convenience library that is specific to the display & I/O expander in use.
6264
//|
65+
//| If the board has an integrated I/O expander, ``**board.TFT_IO_EXPANDER`` expands to the proper arguments starting with ``gpio_address``.
66+
//| Note that this may include the ``i2c_init_sequence`` argument which can change the direction & value of I/O expander pins.
67+
//| If this is undesirable, take a copy of ``TFT_IO_EXPANDER`` and change or remove the ``i2c_init_sequence`` key.
68+
//|
69+
//| If the board has an integrated display that requires an initialization sequence, ``board.TFT_INIT_SEQUENCE`` is the initialization string for the display.
70+
//|
6371
//| :param busio.I2C bus: The I2C bus where the I/O expander resides
64-
//| :param busio.i2c_address: int: The I2C bus address of the I/O expander
72+
//| :param int busio.i2c_address: The I2C bus address of the I/O expander
73+
//| :param ReadableBuffer init_sequence: The initialization sequence to send to the display
6574
//| :param int gpio_address: The address portion of the I2C transaction (1 byte)
6675
//| :param int gpio_data_len: The size of the data portion of the I2C transaction, 1 or 2 bytes
6776
//| :param int gpio_data: The output value for all GPIO bits other than cs, mosi, and clk (needed because GPIO expanders may be unable to read back the current output value)
6877
//| :param int cs_bit: The bit number (from 0 to 7, or from 0 to 15) of the chip select bit in the GPIO register
6978
//| :param int mosi_value: The bit number (from 0 to 7, or from 0 to 15) of the data out bit in the GPIO register
7079
//| :param int clk_value: The bit number (from 0 to 7, or from 0 to 15) of the clock out bit in the GPIO register
80+
//| :param Optional[int] reset_value: The bit number (from 0 to 7, or from 0 to 15) of the display reset bit in the GPIO register
81+
//| :param Optional[ReadableBuffer] i2c_init_sequence: An initialization sequence to send to the I2C expander
7182
//| """
7283
//|
7384

7485
STATIC mp_obj_t ioexpander_send_init_sequence(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
75-
enum { ARG_bus, ARG_i2c_address, ARG_gpio_address, ARG_gpio_data_len, ARG_gpio_data, ARG_cs_bit, ARG_mosi_bit, ARG_clk_bit, ARG_init_sequence, NUM_ARGS };
86+
enum { ARG_bus, ARG_init_sequence, ARG_i2c_address, ARG_gpio_address, ARG_gpio_data_len, ARG_gpio_data, ARG_cs_bit, ARG_mosi_bit, ARG_clk_bit, ARG_reset_bit, ARG_i2c_init_sequence, NUM_ARGS };
7687

7788
static const mp_arg_t allowed_args[] = {
7889
{ MP_QSTR_bus, MP_ARG_REQUIRED | MP_ARG_OBJ },
79-
{ MP_QSTR_i2c_address, MP_ARG_REQUIRED | MP_ARG_INT },
80-
{ MP_QSTR_gpio_address, MP_ARG_REQUIRED | MP_ARG_INT },
81-
{ MP_QSTR_gpio_data_len, MP_ARG_REQUIRED | MP_ARG_INT },
82-
{ MP_QSTR_gpio_data, MP_ARG_REQUIRED | MP_ARG_INT },
83-
{ MP_QSTR_cs_bit, MP_ARG_REQUIRED | MP_ARG_INT },
84-
{ MP_QSTR_mosi_bit, MP_ARG_REQUIRED | MP_ARG_INT },
85-
{ MP_QSTR_clk_bit, MP_ARG_REQUIRED | MP_ARG_INT },
8690
{ MP_QSTR_init_sequence, MP_ARG_REQUIRED | MP_ARG_OBJ },
91+
{ MP_QSTR_i2c_address, MP_ARG_KW_ONLY | MP_ARG_REQUIRED | MP_ARG_INT },
92+
{ MP_QSTR_gpio_address, MP_ARG_KW_ONLY | MP_ARG_REQUIRED | MP_ARG_INT },
93+
{ MP_QSTR_gpio_data_len, MP_ARG_KW_ONLY | MP_ARG_REQUIRED | MP_ARG_INT },
94+
{ MP_QSTR_gpio_data, MP_ARG_KW_ONLY | MP_ARG_REQUIRED | MP_ARG_INT },
95+
{ MP_QSTR_cs_bit, MP_ARG_KW_ONLY | MP_ARG_REQUIRED | MP_ARG_INT },
96+
{ MP_QSTR_mosi_bit, MP_ARG_KW_ONLY | MP_ARG_REQUIRED | MP_ARG_INT },
97+
{ MP_QSTR_clk_bit, MP_ARG_KW_ONLY | MP_ARG_REQUIRED | MP_ARG_INT },
98+
{ MP_QSTR_reset_bit, MP_ARG_KW_ONLY | MP_ARG_OBJ, { .u_obj = MP_ROM_NONE } },
99+
{ MP_QSTR_i2c_init_sequence, MP_ARG_KW_ONLY | MP_ARG_OBJ, { .u_obj = MP_ROM_NONE } },
87100
};
88101

89102
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
@@ -99,8 +112,8 @@ STATIC mp_obj_t ioexpander_send_init_sequence(size_t n_args, const mp_obj_t *pos
99112
mp_int_t mosi_bit = args[ARG_mosi_bit].u_int;
100113
mp_int_t clk_bit = args[ARG_clk_bit].u_int;
101114

102-
mp_buffer_info_t bufinfo;
103-
mp_get_buffer_raise(args[ARG_init_sequence].u_obj, &bufinfo, MP_BUFFER_READ);
115+
mp_buffer_info_t bufinfo_display_init_sequence;
116+
mp_get_buffer_raise(args[ARG_init_sequence].u_obj, &bufinfo_display_init_sequence, MP_BUFFER_READ);
104117

105118
mp_arg_validate_int_range(i2c_address, 0, 127, MP_QSTR_i2c_address);
106119
mp_arg_validate_int_range(gpio_data_len, 1, 2, MP_QSTR_gpio_dat_len);
@@ -110,6 +123,16 @@ STATIC mp_obj_t ioexpander_send_init_sequence(size_t n_args, const mp_obj_t *pos
110123
mp_arg_validate_int_range(mosi_bit, 0, max_bit, MP_QSTR_mosi_bit);
111124
mp_arg_validate_int_range(clk_bit, 0, max_bit, MP_QSTR_clk_bit);
112125
mp_arg_validate_int_range(gpio_data, 0, (1 << (max_bit * 8)) - 1, MP_QSTR_gpio_data);
126+
mp_int_t reset_mask = 0;
127+
if (args[ARG_reset_bit].u_obj != MP_ROM_NONE) {
128+
mp_int_t reset_bit = mp_arg_validate_int_range(mp_arg_validate_type_int(args[ARG_reset_bit].u_obj, MP_QSTR_reset_bit), 0, max_bit, MP_QSTR_reset_bit);
129+
reset_mask = 0x100 << reset_bit;
130+
}
131+
132+
mp_buffer_info_t bufinfo_i2c_init_sequence = {};
133+
if (args[ARG_i2c_init_sequence].u_obj != mp_const_none) {
134+
mp_get_buffer_raise(args[ARG_i2c_init_sequence].u_obj, &bufinfo_i2c_init_sequence, MP_BUFFER_READ);
135+
}
113136

114137
dotclockframebuffer_ioexpander_spi_bus b = {
115138
.bus = bus_obj,
@@ -120,9 +143,10 @@ STATIC mp_obj_t ioexpander_send_init_sequence(size_t n_args, const mp_obj_t *pos
120143
.cs_mask = 0x100 << cs_bit,
121144
.mosi_mask = 0x100 << mosi_bit,
122145
.clk_mask = 0x100 << clk_bit,
146+
.reset_mask = reset_mask,
123147
};
124148

125-
dotclockframebuffer_ioexpander_send_init_sequence(&b, bufinfo.buf, bufinfo.len);
149+
dotclockframebuffer_ioexpander_send_init_sequence(&b, &bufinfo_i2c_init_sequence, &bufinfo_display_init_sequence);
126150
return mp_const_none;
127151
}
128152

shared-bindings/dotclockframebuffer/__init__.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ typedef struct {
5151
uint32_t cs_mask;
5252
uint32_t mosi_mask;
5353
uint32_t clk_mask;
54+
uint32_t reset_mask;
5455
} dotclockframebuffer_ioexpander_spi_bus;
5556

56-
void dotclockframebuffer_ioexpander_send_init_sequence(dotclockframebuffer_ioexpander_spi_bus *bus, const uint8_t *init_sequence, uint16_t init_sequence_len);
57+
void dotclockframebuffer_ioexpander_send_init_sequence(dotclockframebuffer_ioexpander_spi_bus *bus, const mp_buffer_info_t *i2c_bus_init, const mp_buffer_info_t *display_init);

0 commit comments

Comments
 (0)