We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 745fd9a commit 2359f73Copy full SHA for 2359f73
MIDAS/src/hilsim/kal.cpp
@@ -119,7 +119,7 @@ DECLARE_THREAD(hilsim, void*arg) {
119
120
// ---- ENTRY FUNCS ----
121
void k_run() {
122
- Serial.begin(115200);
+ Serial.begin(921600);
123
// while(!Serial);
124
125
k_push_event(K_START_E);
MIDAS/src/hilsim/stream/main.cpp
@@ -438,6 +438,10 @@ int main(int argc, char** argv) {
438
printf(".r %i\n", latency);
439
fflush(stdout);
440
441
+ if (latency > (int)(skip_threshold*1000)) {
442
+ continue;
443
+ }
444
+
445
// check filter
446
if(!ignore_disc[entry.disc]) {
447
float randm = static_cast<float>(rand())/static_cast<float>(RAND_MAX);
0 commit comments