usb serial debug interface & usb serial async msg (#2111)

* add serial_debug

* not use OSS

* add path print

* add string print and vec

* clean up

* clean up

* format

* add an async blocking bool

* add an async blocking bool - comment

* protect the unexpected tx

* naming

* remove demo code
This commit is contained in:
sommermorgentraum 2024-04-18 18:10:34 +08:00 committed by GitHub
parent bb1b703dc1
commit b2da21b88a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 177 additions and 1 deletions

View file

@ -617,4 +617,6 @@ void setEventDispatcherToUSBSerial(EventDispatcher* evt) {
usb_serial.setEventDispatcher(evt);
}
bool async_tx_enabled = false; // this is for serial tx things, globally
} /* namespace portapack */