mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
use performance matrix to tracking bin size is not convenient. bin size do change for a lot reasons. we'll implement a new method to track it. before that, set a large enough threshold, so we can still keep tracking it.
16 lines
735 B
C
16 lines
735 B
C
|
|
/* @brief macro to print IDF performance
|
|
* @param mode : performance item name. a string pointer.
|
|
* @param value_fmt: print format and unit of the value, for example: "%02fms", "%dKB"
|
|
* @param value : the performance value.
|
|
*/
|
|
#define IDF_LOG_PERFORMANCE(item, value_fmt, value) \
|
|
printf("[Performance][%s]: "value_fmt"\n", item, value)
|
|
|
|
|
|
/* declare the performance here */
|
|
#define IDF_PERFORMANCE_MAX_HTTPS_REQUEST_BIN_SIZE 800
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 200
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
|