Files
platform-espressif32/boards/nano32.json
T
Erik Moqvist 1a2734cc62 New framework: Pumbaa (#7)
* New framework: Pumbaa

Pumbaa is MicroPython on top of Simba.

The framework will generate a file called frozen.c from all .py files
found in the project src/ folder. The script file main.py is the entry
point for the user script. If main.py is missing the application will
enter the interactive Python interpreter.

All c/cpp source files (including frozen.c) will be compiled, linked
and uploaded as an ordinary c application.

http://pumbaa.readthedocs.io/en/latest/

* Added pumbaa-blink example to appveyor.
2016-12-24 15:48:08 +02:00

30 lines
642 B
JSON

{
"build": {
"core": "esp32",
"extra_flags": "-DESP32_DEV -DARDUINO_NANO32",
"f_cpu": "240000000L",
"f_flash": "80000000L",
"flash_mode": "dio",
"ldscript": "esp32_out.ld",
"mcu": "esp32",
"variant": "nano32"
},
"frameworks": [
"arduino",
"espidf",
"simba",
"pumbaa"
],
"name": "MakerAsia Nano32",
"upload": {
"maximum_ram_size": 294912,
"maximum_size": 1044464,
"require_upload_port": true,
"resetmethod": "nodemcu",
"speed": 115200,
"wait_for_upload_port": true
},
"url": "http://iot-bits.com/nano32-esp32-development-board",
"vendor": "MakerAsia"
}