summaryrefslogtreecommitdiff
path: root/ports
AgeCommit message (Collapse)Author
2021-03-19fix stm compiler errorDan Halbert
2021-03-19update flash chip commentJeff Epler
2021-03-19Fix PWMOut non-error handling and never resetDan Halbert
2021-03-19another place to fix flash capacityJeff Epler
2021-03-19fix display rotation and positionDan Halbert
2021-03-18make translate; fix display pinsDan Halbert
2021-03-18correct PIDDan Halbert
2021-03-18update funhouse pins for latest rev bDan Halbert
2021-03-18merge from upstreamDan Halbert
2021-03-18Redo RP2040 flash settingsScott Shawcroft
This switches stage2 to C and uses Jinja to change the C code based on flash settings from https://github.com/adafruit/nvm.toml. It produces the fastest settings for the given set of external flashes. Flash size is no longer hard coded so switching flashes with similar capabilities but different sizes should *just work*. This PR also places "ITCM" code in RAM to save the XIP cache for code execution. Further optimization is possible. A blink code.py still requires a number of flash fetches every blink. Fixes #4041
2021-03-18Merge pull request #4435 from jepler/metro-m7Jeff Epler
Fixes for Metro M7
2021-03-18mimxrt: Quiet some warnings down in the sdkJeff Epler
Closes #2487
2021-03-18mimxrt: Enable USB MidiJeff Epler
Closes #2473
2021-03-18metro_m7: Update board name, flash chip sizeJeff Epler
2021-03-17Merge pull request #4419 from spe2/mainScott Shawcroft
Add board definition for Sparkfun Pro Micro RP2040
2021-03-17Merge pull request #4411 from mintakka/thingplus-rp2040Jeff Epler
added board configuration for Sparkfun ThingPlus RP2040
2021-03-17RP2040: Only bitbang 0-byte writesPhil Howard
The I2C.c for RP2040 included a special case for writes <=2 bytes to match the MicroPython implementation, however RP2040 does support 1 and 2 byte reads, with only 0 bytes being the exception. Signed-off-by: Philip Howard <phil@pimoroni.com>
2021-03-17Merge pull request #4403 from jepler/bitmap-read-2Jeff Epler
bitmaptools: Add readinto, arrayblit
2021-03-16renamed board folder to match board name in boards.ymlmintakka
2021-03-16disable bitmaptools on small boardJeff Epler
2021-03-16Merge pull request #4421 from kattni/led-pinJeff Epler
Adding LED for D13/L pin name.
2021-03-16Merge pull request #4130 from gamblor21/rp_dp_parallelMark
Add RP2040 displayio.ParallelBus Support
2021-03-16Update ports/raspberrypi/boards/sparkfun_pro_micro_rp2040/mpconfigboard.mkspe2
Co-authored-by: Scott Shawcroft <scott@tannewt.org>
2021-03-16Update ports/raspberrypi/boards/sparkfun_pro_micro_rp2040/mpconfigboard.hspe2
Co-authored-by: Scott Shawcroft <scott@tannewt.org>
2021-03-16Update ports/raspberrypi/boards/sparkfun_thingplus_rp2040/mpconfigboard.hmintakka
Co-authored-by: Scott Shawcroft <scott@tannewt.org>
2021-03-16Update ports/raspberrypi/boards/sparkfun_thingplus_rp2040/mpconfigboard.mkmintakka
Co-authored-by: Scott Shawcroft <scott@tannewt.org>
2021-03-16Merge remote-tracking branch 'origin/main' into bitmap-read-2Jeff Epler
2021-03-16Adding LED for D13/L pin name.Kattni Rembor
2021-03-16Merge pull request #4415 from jepler/pre-commit-no-run-if-emptyJeff Epler
pre-commit: code formatter fixes
2021-03-16More formattinggamblor21
2021-03-16Formatting fixesgamblor21
2021-03-16Fixed formattinggamblor21
2021-03-15Add board config filesspe2
2021-03-15Create pins.cspe2
2021-03-15added sparkfun_thingplus_rp2040 to .github/workflows/boards.yml and renamed ↵mintakka
board folder to include chip
2021-03-15Update ports/raspberrypi/boards/sparkfun_thingplus/mpconfigboard.hmintakka
Co-authored-by: Scott Shawcroft <scott@tannewt.org>
2021-03-15Update ports/raspberrypi/boards/sparkfun_thingplus/mpconfigboard.mkmintakka
Co-authored-by: Scott Shawcroft <scott@tannewt.org>
2021-03-15Merge branch 'main' into rp_dp_parallelMark
2021-03-15Merge pull request #4405 from DavePutz/issue_4237Scott Shawcroft
Issue 4237 - Changed initial setting in program_struct
2021-03-15Merge pull request #4412 from kamtom480/spi_and_i2cScott Shawcroft
spresense: minor changes for i2c, spi and uart
2021-03-15modifications by pre-commitJeff Epler
2021-03-15spresense: empty rx uart fifo after initializationKamil Tomaszewski
2021-03-15spresens: configure pin mode for i2c and spiKamil Tomaszewski
2021-03-15added board configuration for Sparkfun ThingPlus RP2040mintakka
2021-03-15run code formatting scriptmicroDev
2021-03-14disable bitmaptools on over-full boardJeff Epler
2021-03-14Fixed initial settings for program_struct to allow more than 1 program per pioroot
2021-03-13Merge pull request #4393 from tannewt/raise_default_flash_speedDan Halbert
Speed up a bit more
2021-03-12Merge pull request #4262 from DavePutz/issue_4111Scott Shawcroft
Issue 4111 - Implement pulseio(pulsein) for RP2040
2021-03-12Speed up a bit moreScott Shawcroft