2017-11-07 23:27:57 -05:00
|
|
|
|
|
|
|
/* @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 */
|
2018-01-31 20:57:00 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_HTTPS_REQUEST_BIN_SIZE 800
|
2017-11-07 23:27:57 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP 200
|
2017-12-19 02:47:00 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_PSRAM 270
|
2017-11-07 23:27:57 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_FREERTOS_SPINLOCK_CYCLES_PER_OP_UNICORE 130
|
|
|
|
#define IDF_PERFORMANCE_MAX_ESP_TIMER_GET_TIME_PER_CALL 1000
|
2018-02-07 02:45:10 -05:00
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING 30
|
|
|
|
#define IDF_PERFORMANCE_MAX_SPI_PER_TRANS_NO_POLLING_NO_DMA 25
|
|
|
|
|
|
|
|
|