You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
David Sugar 20e4c9f8f6
Flash from user code (#35)
* support for a subset of the bootrom functions added: fast bit count/ manipulation functions (tested), fast bulk memory fill/ copy functions (tested), flash access functions (NOT tested), debugging support functions (not implemented), miscellaneous functions (not implemented).

* added support for erasing and programming flash from user code. between the first and last call in a programming sequence, the SSI is not in a state where it can handle XIP accesses, so the code that calls the intervening functions must be located in SRAM. this is why I added the time_critical section to rp2040.ld (maybe one should create a dedicated section in ram that is rwx and keep data rwNx).

* flash_program.zig example added
1 year ago
deps update microzig (#34) 1 year ago
examples Flash from user code (#35) 1 year ago
src Flash from user code (#35) 1 year ago
.gitattributes try lf endings to fix windows compile error (#7) 2 years ago
.gitignore init 2 years ago
.gitmodules move examples in here (#12) 2 years ago
LICENSE add license 2 years ago
README.adoc Update microzig (#31) 2 years ago
build.zig Flash from user code (#35) 1 year ago
rp2040.ld Flash from user code (#35) 1 year ago

README.adoc

= raspberrypi-rp2040

HAL and register definitions for the RP2040.

== What version of Zig to use

Right now we are following [master](https://ziglang.org/download/), but once 0.11.0 is released, we will be switching to the latest stable version of Zig.