ADD: There were lot of calls to enable tracing, but very few to turn it of afterwards in the methods.

Don't know if it has some influence but can't hurt calling  "set_tracing(FALSE);"  when method returns.
This commit is contained in:
iceman1001
2015-10-11 19:14:17 +02:00
parent 3bc7b13d23
commit 5ee53a0e75
8 changed files with 96 additions and 67 deletions

View File

@@ -204,9 +204,10 @@ void UsbCommandReceived(UsbCommand *UC)
return;
} break;
default:
storeCommand(UC);
default: {
storeCommand(UC);
break;
}
}
}