1a2734cc62
* 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.
14 lines
411 B
INI
Executable File
14 lines
411 B
INI
Executable File
; PlatformIO Project Configuration File
|
|
;
|
|
; Build options: build flags, source filter, extra scripting
|
|
; Upload options: custom port, speed and extra flags
|
|
; Library options: dependencies, extra library storages
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; http://docs.platformio.org/en/stable/projectconf.html
|
|
|
|
[env:nano32]
|
|
platform = espressif32
|
|
framework = pumbaa
|
|
board = nano32
|