Skip to content

Commit

Permalink
Fix uart dataLength = 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Dolu1990 committed Oct 14, 2024
1 parent d379dd6 commit fee0edf
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ case class UartRxTx() extends Component {
val uartCtrl = UartCtrl(
config=UartCtrlInitConfig(
baudrate = 115200,
dataLength = 8,
dataLength = 7,
parity = UartParityType.NONE,
stop = UartStopType.ONE
)
Expand All @@ -365,7 +365,7 @@ case class UartTx() extends Component {
val uartCtrl = UartCtrl(
config=UartCtrlInitConfig(
baudrate = 115200,
dataLength = 8,
dataLength = 7,
parity = UartParityType.NONE,
stop = UartStopType.ONE
)
Expand All @@ -386,7 +386,7 @@ case class UartRx() extends Component {
val uartCtrl = UartCtrl(
config = UartCtrlInitConfig(
baudrate = 115200,
dataLength = 8,
dataLength = 7,
parity = UartParityType.NONE,
stop = UartStopType.ONE
),
Expand Down Expand Up @@ -467,7 +467,7 @@ case class UartWithHeader() extends Component {
val uartCtrl = UartCtrl(
config=UartCtrlInitConfig(
baudrate = 115200,
dataLength = 8,
dataLength = 7,
parity = UartParityType.NONE,
stop = UartStopType.ONE
)
Expand Down

0 comments on commit fee0edf

Please sign in to comment.