Browse Source

rp2/boards/ARDUINO_NANO_RP2040_CONNECT: Disable internal errno.

* Internal errno can't be used with Nina module due to an issue
with esp-idf config.
pull/8654/head
iabdalkader 3 years ago
parent
commit
a22d0bda52
  1. 3
      ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/mpconfigboard.h

3
ports/rp2/boards/ARDUINO_NANO_RP2040_CONNECT/mpconfigboard.h

@ -8,6 +8,9 @@
#define MICROPY_PY_NETWORK (1)
#define MICROPY_PY_USOCKET (1)
// Disable internal error numbers.
#define MICROPY_USE_INTERNAL_ERRNO (0)
// Enable USB Mass Storage with FatFS filesystem.
#define MICROPY_HW_USB_MSC (1)
#define MICROPY_HW_USB_VID (0x2341)

Loading…
Cancel
Save