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.
This commit is contained in:
iabdalkader 2022-05-17 12:03:05 +02:00
parent 4bcffbd1c6
commit a22d0bda52
1 changed files with 3 additions and 0 deletions

View File

@ -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)