bugfix but still

This commit is contained in:
rusefi 2019-12-01 20:37:24 -05:00
parent 91eef6fa3b
commit 14a5aa5c76
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import java.util.List;
*
* This allows developers to only edit C/C++ header yet see proper names in chrome://tracing JSON file
*
* This is not used in runtime while profiling actual firmward
* This is not used in runtime while profiling actual firmware
* @see JsonOutput
* @see EnumNames
*

View File

@ -79,7 +79,7 @@ public class Entry {
double timestampSeconds = timestampNt / 1000000.0;
minValue = Math.min(minValue, timestampNt);
minValue = Math.min(minValue, timestampSeconds);
String name;
if (type == 1) {
name = "ISR: " + thread;