File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -192,8 +192,8 @@ impl Board {
192
192
sda : p1parts. p1_00 . into_floating_input ( ) ,
193
193
} ,
194
194
uart : UartPins {
195
- tx : p1parts . p1_08 . into_push_pull_output ( Level :: Low ) ,
196
- rx : p0parts . p0_06 . into_floating_input ( ) ,
195
+ tx : p0parts . p0_06 . into_push_pull_output ( Level :: High ) ,
196
+ rx : p1parts . p1_08 . into_floating_input ( ) ,
197
197
} ,
198
198
199
199
// Core peripherals
Original file line number Diff line number Diff line change @@ -114,8 +114,8 @@ pub type SCL = p0::P0_26<Input<Floating>>;
114
114
pub type SDA = p1:: P1_00 < Input < Floating > > ;
115
115
116
116
/* uart */
117
- pub type UART_TX = p1 :: P1_08 < Output < PushPull > > ;
118
- pub type UART_RX = p0 :: P0_06 < Input < Floating > > ;
117
+ pub type UART_TX = p0 :: P0_06 < Output < PushPull > > ;
118
+ pub type UART_RX = p1 :: P1_08 < Input < Floating > > ;
119
119
120
120
/* speaker */
121
121
pub type SPEAKER = p0:: P0_00 < Output < PushPull > > ;
You can’t perform that action at this time.
0 commit comments