mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
Merge pull request #1985 from openmv/fix_display_args
modules/spi_display: Fix display args.
This commit is contained in:
commit
181ceb7a4c
@ -352,7 +352,7 @@ static void spi_display_deinit(py_display_obj_t *self) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
mp_obj_t spi_display_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
|
mp_obj_t spi_display_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
|
||||||
enum { ARG_width, ARG_height, ARG_refresh, ARG_triple_buffer, ARG_bgr, ARG_byte_swap};
|
enum { ARG_width, ARG_height, ARG_refresh, ARG_bgr, ARG_byte_swap, ARG_triple_buffer };
|
||||||
static const mp_arg_t allowed_args[] = {
|
static const mp_arg_t allowed_args[] = {
|
||||||
{ MP_QSTR_width, MP_ARG_INT, {.u_int = 128 } },
|
{ MP_QSTR_width, MP_ARG_INT, {.u_int = 128 } },
|
||||||
{ MP_QSTR_height, MP_ARG_INT, {.u_int = 160 } },
|
{ MP_QSTR_height, MP_ARG_INT, {.u_int = 160 } },
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user