Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wa1tnr/rpi-pico-basics
RPi Pico RP2040 Basics - includes simple USB interpreter (keystroke echo).
https://github.com/wa1tnr/rpi-pico-basics
assembly-language-programming basics basics-of-rp2040 c cpp forth programmable-i-o raspberry-pi-pico rp2040 rp2pio rpi-pico-pio rpi-rp2
Last synced: 8 days ago
JSON representation
RPi Pico RP2040 Basics - includes simple USB interpreter (keystroke echo).
- Host: GitHub
- URL: https://github.com/wa1tnr/rpi-pico-basics
- Owner: wa1tnr
- Created: 2021-02-05T00:10:21.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-08T17:11:33.000Z (almost 4 years ago)
- Last Synced: 2024-04-19T17:24:14.040Z (8 months ago)
- Topics: assembly-language-programming, basics, basics-of-rp2040, c, cpp, forth, programmable-i-o, raspberry-pi-pico, rp2040, rp2pio, rpi-pico-pio, rpi-rp2
- Language: C
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rpi-pico-basics
# Mon Feb 8 03:42:47 UTC 2021
# About
First exploration of RP2040 and Raspberry Pi Pico,
locally. A primitive USB interpreter exists now.# Interesting Files
This is a very rough interpreter that broadcasts
also on the UART, and only accepts keystrokes on
the USB.The /dev/ttyACM0 is the primary interface (USB).
Using CP2104 USB-to-USART bridge, the secondary
interface (in Linux host PC) is /dev/ttyUSB0, but
that is arbitrary (you can bridge using other
methods and chips).This is the interpreter file and its location:
rpi-pico-basics/07-interpreter.d/pico-examples/interpreter-a/interpreter-a.c
# Topics
# rp2040
# raspberry-pi-pico# basics-of-rp2040
# rpi-pico-pio
# programmable-i-o
# forth assembly-language-programming
# basics
# c cppEND.