arduino-pico/tools
Earle F. Philhower, III 36d5cebde6
Remove binary info header, was crashing picotool (#831)
Because OTA has changed the flash map from standard, picotool ends up
crashing or hanging while trying to operate on the current built files.

Remove the binary_info calls and structures completely to avoid any
issue.

Fixes #803
2022-09-02 23:17:03 -07:00
..
json Add ExteremeElectric JSON 2022-08-28 12:38:14 -07:00
libbearssl Add WiFiClientSecure and WifiServerSecure (TLS) support, NTP (#683) 2022-07-18 20:24:11 -07:00
libpico Remove binary info header, was crashing picotool (#831) 2022-09-02 23:17:03 -07:00
pyserial@0e76347475 Adjust directories for cleaner use w/Arduino 2021-03-17 08:33:51 -07:00
build.py Add WebServer, WebServerSecure, HTTPUpdateServer, HTTPUpdateServerSecure (#791) 2022-08-23 15:51:32 -07:00
discovery.py Adjust directories for cleaner use w/Arduino 2021-03-17 08:33:51 -07:00
espota.py Add OTA update support (#711) 2022-08-12 00:26:51 -07:00
get.py Hide get.py download percent when not interactive (#618) 2022-06-09 18:00:45 -07:00
makeboards.py Identify boards when in compound USB device mode (#806) 2022-08-28 12:34:06 -07:00
makever.py Add WiFiClientSecure and WifiServerSecure (TLS) support, NTP (#683) 2022-07-18 20:24:11 -07:00
platformio-build.py Add OTA.O to make p.io builds function (#755) 2022-08-12 06:09:29 -07:00
README.md Add script to update version number, new header (#506) 2022-03-06 11:04:19 -08:00
signing.py Add OTA update support (#711) 2022-08-12 00:26:51 -07:00
simplesub.py Adafruit Feather, overclocking, flash FS shims 2021-03-28 10:56:53 -07:00
uf2conv.py Shrink flash and RAM usage even more (#627) 2022-06-13 11:54:38 -07:00

Tools directory for the RP2040 Arduino-Pico

get.py

Downloads and installs the toolchain into a GIT clone of the repo. Run once after the git clone and any time the toolchain JSON file updates. The dist directory caches downloaded toolchain files.

discovery.py

Run in the background by the IDE to scan for UF2 drives to show in the menus. Normally not run manually by the user.

uf2conv.py

Manages the upload of the UF2 formatted file to the board. Called as part of the IDE upload process. Will optionally send the serial reset signal to get the board into update mode (1200bps connection).

simplesub.py

Very dumb sed-like tool used by the platform scripts to generate the linker .ld file (replacing the EEPROM location, FS sizes, etc.). Because we run on Windows, Mac, and Linux, need to provide this and not rely on existence of sed command.

pyserial

git clone of the PySerial Python3 library to be used by the IDE.

makeboards.py

Generates boards.txt programmatically. Never edit the boards.txt file manually, use python3 tools/makeboards.py. Change the script as necessary to add any add'l fields or menus required. Used because the boards.txt file is very repetitive and it's safer to generate with code than by hand.

makever.py

Updates the version info prior to a release in platform.txt, package.json, and the version header. Run from root of the repo.

libpico/make-libpico.sh

Builds the libpico.a file as well as the bootloader stage2 binaries. Run whenever the pico-sdk is updated.