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:
parent
4bcffbd1c6
commit
a22d0bda52
|
@ -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…
Reference in New Issue