https://github.com/wa1tnr/rp2040-pio-philhower-a
philhower core rp2040 on platformio build env w Makefile UF2 installation 2023 5 April
https://github.com/wa1tnr/rp2040-pio-philhower-a
arduino arduino-ide arduino-pico assembly-language-programming platformio-arduino raspberry-pi-pico-rp2040 rp2040 rpi-rp2
Last synced: 3 months ago
JSON representation
philhower core rp2040 on platformio build env w Makefile UF2 installation 2023 5 April
- Host: GitHub
- URL: https://github.com/wa1tnr/rp2040-pio-philhower-a
- Owner: wa1tnr
- Created: 2023-04-05T17:14:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-05T19:57:06.000Z (about 2 years ago)
- Last Synced: 2025-02-10T00:28:02.416Z (4 months ago)
- Topics: arduino, arduino-ide, arduino-pico, assembly-language-programming, platformio-arduino, raspberry-pi-pico-rp2040, rp2040, rpi-rp2
- Language: Assembly
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Assembler in arduino-pico philhower platformio
## Wed 5 Apr 16:49:55 UTC 2023###For platformio philhower core
unrelated link, probably:
https://wokwi.com/projects/360654241673775105
asmword - blinks n times
WORKING PROGRAM Wed 5 Apr 16:49:55 UTC 2023
If this becomes portable to wokwi it'll be updated here (in the
above link) - that's the status for 5 April 2023 16:55 UTC.last known working version (but different environment):
https://wokwi.com/projects/361121585740433409
```
; usual platformio.ini configure for number of blinks:
[env]
build_flags =
'-DBLINKS_PARAM=3'
-Wall
-v
; -v
````make install` is the recommended method for firmware upload
to the target, on 5 April 2023 16:58 UTC.`./c ; make install` is full boat (do it all and be thorough).
It also makes a build log and is very fast to do the entire
iteration. ;) go go go```
void loop() {
delay(5000);
reflash();
while(-1);
}
```That's why it tries to mount for a .UF2 upload every single time.
Just suppress reflash() if that's unwanted.#### End.