Commit 8f196ba0 authored by Theodor-Adrian Stana's avatar Theodor-Adrian Stana

Use TR button to exit from USB mass storage app

All other apps use the same button to exit, so the USB mass storage app was
changed in kind.
parent bb2e984b
......@@ -83,7 +83,7 @@ void usb_ms_main(void* params) {
if(xQueueReceive(appQueue, &evt, 1)) {
switch(evt.type) {
case BUTTON_PRESSED:
if(evt.data.button == BUT_TL) {
if(evt.data.button == BUT_TR) {
USBD_Stop();
return; // go back to the main menu
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment