This commit is contained in:
folkert van heusden 2024-05-20 20:36:05 +02:00
parent a9d0f89c00
commit 7b8abd483e
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

View file

@ -96,10 +96,10 @@ JsonDocument comm_esp32_hardwareserial::serialize() const
j["comm-backend-type"] = "hardware-serial"; j["comm-backend-type"] = "hardware-serial";
j["uart"] = uart_nr; j["uart"] = uart_nr;
j["rx-pin"] = rx_pin; j["rx-pin"] = rx_pin;
j["tx-pin"] = tx_pin; j["tx-pin"] = tx_pin;
j["bitratre"] = bitrate; j["bitrate"] = bitrate;
return j; return j;
} }