diff options
author | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-05-31 12:22:36 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-05-31 12:22:36 +0200 |
commit | 80909cdb533f99fd3823de80fe6255c01eeccc50 (patch) | |
tree | b895d0aa2b12ae02ec7b5936887450262ccca503 /Cargo.toml |
first blinky working
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..6ea7014 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "picofirst" +version = "0.1.0" +edition = "2024" + +[dependencies] +cortex-m = "0.7.7" +cortex-m-rt = "0.7.5" +embedded-hal = "1.0.0" +panic-halt = "1.0.0" +rp-pico = "0.9.0" |