Merge branches 'master' and 'master' of ssh://gavania.de:23/hodasemi/Arduino-Pedal-Effects

This commit is contained in:
hodasemi 2023-08-25 12:27:36 +02:00
commit 6539e6695c
3 changed files with 15 additions and 2 deletions

View file

@ -12,6 +12,11 @@ jobs:
- uses: https://github.com/dtolnay/rust-toolchain@stable - uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Install dependencies
run: |
apt-get update
apt-get install --no-install-recommends -y gcc-avr
- name: Build - name: Build
run: | run: |
cd rust/arduino cd rust/arduino
@ -23,6 +28,9 @@ jobs:
- uses: https://github.com/dtolnay/rust-toolchain@stable - uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Install flip-link
run: cargo install flip-link
- name: Build - name: Build
run: | run: |
cd rust/pico cd rust/pico
@ -34,6 +42,11 @@ jobs:
- uses: https://github.com/dtolnay/rust-toolchain@stable - uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Install dependencies
run: |
apt-get update
apt-get install --no-install-recommends -y libpango1.0-dev libgtk-3-dev libudev-dev
- name: Build - name: Build
run: | run: |
cd rust/serial_reader cd rust/serial_reader

View file

@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
panic-halt = "0.2.0" panic-halt = "0.2.0"
avr-device = { version = "0.5.1", features = ["atmega328p"] } avr-device = { version = "0.5.2", features = ["atmega328p"] }
arduino-hal = { git = "https://github.com/Rahix/avr-hal", features = ["arduino-uno"], rev = "1aacefb335517f85d0de858231e11055d9768cdf" } arduino-hal = { git = "https://github.com/Rahix/avr-hal", features = ["arduino-uno"], rev = "1aacefb335517f85d0de858231e11055d9768cdf" }
ufmt = "0.2.0" ufmt = "0.2.0"

View file

@ -8,5 +8,5 @@ edition = "2021"
[dependencies] [dependencies]
serialport = "4.2.2" serialport = "4.2.2"
gtk = { version = "0.18.0", features = ["v3_24"] } gtk = { version = "0.18.0", features = ["v3_24"] }
anyhow = { version = "1.0.74", features = ["backtrace"] } anyhow = { version = "1.0.75", features = ["backtrace"] }
glib = "0.18.1" glib = "0.18.1"