MakerAsia Nano32¶
Hardware¶
Platform Espressif 32: Espressif Systems is a privately held fabless semiconductor company. They provide wireless communications and Wi-Fi chips which are widely used in mobile devices and the Internet of Things applications.
| Microcontroller | ESP32 |
| Frequency | 240MHz |
| Flash | 4MB |
| RAM | 320KB |
| Vendor | MakerAsia |
Configuration¶
Please use nano32 ID for board option in “platformio.ini” (Project Configuration File):
[env:nano32]
platform = espressif32
board = nano32
You can override default MakerAsia Nano32 settings per build environment using
board_*** option, where *** is a JSON object path from
board manifest nano32.json. For example,
board_build.mcu, board_build.f_cpu, etc.
[env:nano32]
platform = espressif32
board = nano32
; change microcontroller
board_build.mcu = esp32
; change MCU frequency
board_build.f_cpu = 240000000L
Uploading¶
MakerAsia Nano32 supports the next uploading protocols:
espotaesptool
Default protocol is esptool
You can change upload protocol using upload_protocol option:
[env:nano32]
platform = espressif32
board = nano32
upload_protocol = esptool
Debugging¶
PIO Unified Debugger currently does not support MakerAsia Nano32 board.
Frameworks¶
| Name | Description |
|---|---|
| Arduino | Arduino Wiring-based Framework allows writing cross-platform software to control devices attached to a wide range of Arduino boards to create all kinds of creative coding, interactive objects, spaces or physical experiences. |
| ESP-IDF | Espressif IoT Development Framework. Official development framework for ESP32. |
| Pumbaa | Pumbaa is Python on top of Simba. The implementation is a port of MicroPython, designed for embedded devices with limited amount of RAM and code memory. |
| Simba | Simba is an RTOS and build framework. It aims to make embedded programming easy and portable. |