Skip to content

Commit

Permalink
fix(atmega-hal): Remove non-existent pins
Browse files Browse the repository at this point in the history
  • Loading branch information
LuigiPiucco committed Feb 2, 2024
1 parent 1abaf3d commit 30a247e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mcu/atmega-hal/src/port.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ avr_hal_generic::impl_port_traditional! {
avr_hal_generic::impl_port_traditional! {
enum Ports {
B: crate::pac::PORTB = [0, 1, 2, 3, 4, 5, 6, 7],
C: crate::pac::PORTC = [0, 1, 2, 3, 4, 5, 6, 7],
C: crate::pac::PORTC = [0, 1, 2, 3, 4, 5, 6],
D: crate::pac::PORTD = [0, 1, 2, 3, 4, 5, 6, 7],
E: crate::pac::PORTE = [0, 1, 2, 3],
}
Expand All @@ -36,7 +36,7 @@ avr_hal_generic::impl_port_traditional! {
C: crate::pac::PORTC = [6, 7],
D: crate::pac::PORTD = [0, 1, 2, 3, 4, 5, 6, 7],
E: crate::pac::PORTE = [2, 6],
F: crate::pac::PORTF = [0, 1, 2, 3, 4, 5, 6, 7],
F: crate::pac::PORTF = [0, 1, 4, 5, 6, 7],
}
}

Expand All @@ -49,7 +49,7 @@ avr_hal_generic::impl_port_traditional! {
D: crate::pac::PORTD = [0, 1, 2, 3, 4, 5, 6, 7],
E: crate::pac::PORTE = [0, 1, 2, 3, 4, 5, 6, 7],
F: crate::pac::PORTF = [0, 1, 2, 3, 4, 5, 6, 7],
G: crate::pac::PORTG = [0, 1, 2, 3, 4, 5],
G: crate::pac::PORTG = [0, 1, 2, 3, 4],
}
}

Expand Down

0 comments on commit 30a247e

Please sign in to comment.