Sub: Document min/max loop times as being in microseconds

This commit is contained in:
Michael du Breuil 2017-07-14 22:37:29 -07:00 committed by Randy Mackay
parent a81bfe644a
commit f8f97b61ea
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@
#define PERF_INFO_OVERTIME_THRESHOLD_MICROS 3000
static uint16_t perf_info_loop_count;
static uint32_t perf_info_max_time;
static uint32_t perf_info_min_time;
static uint32_t perf_info_max_time; // in microseconds
static uint32_t perf_info_min_time; // in microseconds
static uint16_t perf_info_long_running;
static uint32_t perf_info_log_dropped;
static bool perf_ignore_loop = false;