Skip to content

Commit

Permalink
add an async blocking bool - comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zxkmm committed Apr 17, 2024
1 parent 45f33a6 commit 24bd55f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion firmware/application/portapack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,6 @@ void setEventDispatcherToUSBSerial(EventDispatcher* evt) {
usb_serial.setEventDispatcher(evt);
}

bool async_tx_enabled = false;
bool async_tx_enabled = false; // this is for serial tx things, globally

} /* namespace portapack */
2 changes: 1 addition & 1 deletion firmware/application/portapack.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ void setEventDispatcherToUSBSerial(EventDispatcher* evt);

Backlight* backlight();

extern bool async_tx_enabled;
extern bool async_tx_enabled; // this is for serial tx things, globally

} /* namespace portapack */

0 comments on commit 24bd55f

Please sign in to comment.