Add PlatformIO support (#250)
* Add package.json To make package easily integratable with PlatformIO * Correct name back to original one * Format package.json * Add first shot at builder script * Add USB stack flags, fix compile flags * Formatting * Add more link & USB flags * Build Boot2 bootloader * Formatting * Generate linkerscript, linker fixes * Fix linkflags, make firmware runnable * Update USB flags and RAM size * Correct USB flags, add dynamic sketch partitioning * Restructure filesystem size and flash size logic into platform code * Move C++ only flags to CXXFLAGS * Add PlatformIO documentation * Link to new platform.io document in the docs TOC * Fix typos in platformio docs * Fix one additional typo in platformio.rst * Update docs * Remove wrongly commited build folder
Showing
28.5 KB
93 KB
docs/platformio.rst
0 → 100644
{ | { | ||
"name": "framework-arduinopico", | "name": "framework-arduinopico", | ||
"description": "Arduino Wiring-based Framework (RPi Pico RP2040)", | "version": "1.10903.0", | ||
"url": "https://github.com/earlephilhower/arduino-pico", | "description": "Arduino Wiring-based Framework (RPi Pico RP2040)", | ||
"version": "0.9.2" | "keywords": [ | ||
"framework", | |||
"arduino", | |||
"Cortex-M", | |||
"Raspberry Pi", | |||
"RP2040" | |||
], | |||
"homepage": "https://arduino-pico.readthedocs.io/en/latest/", | |||
"repository": { | |||
"type": "git", | |||
"url": "https://github.com/earlephilhower/arduino-pico" | |||
} | |||
} | } |
tools/platformio-build.py
0 → 100644