Closed
Description
The definition of Rust board: https://github.com/wokwi/wokwi-boards/blob/main/boards/esp32-c3-rust-1/board.json
does not contain RX and TX definition.
While template generated by wokwi-cli init
for the board contains this reference:
{
"version": 1,
"editor": "wokwi",
"parts": [
{
"type": "board-esp32-c3-rust-1",
"id": "esp"
}
],
"connections": [
[
"esp:TX",
"$serialMonitor:RX",
""
],
[
"esp:RX",
"$serialMonitor:TX",
""
]
]
}
Workaround:
"connections": [
[ "esp:21", "$serialMonitor:RX", "", [] ],
[ "esp:20", "$serialMonitor:TX", "", [] ]
],
@SergioGasquez What would be proper solution? Should be the definition of the board updated, or should be the template from wokwi-cli init
updated.