mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-03 15:04:39 +00:00
freertos: Removed CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION kconfig option
This commit removes the unused FreeRTOS kconfig option CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION.
This commit is contained in:
@@ -310,14 +310,6 @@ extern volatile BaseType_t xPortSwitchFlag;
|
||||
#define os_task_switch_is_pended(_cpu_) (false)
|
||||
#endif
|
||||
|
||||
// --------------------- Debugging -------------------------
|
||||
|
||||
#if CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION
|
||||
#define UNTESTED_FUNCTION() do{ esp_rom_printf("Untested FreeRTOS function %s\r\n", __FUNCTION__); configASSERT(false); } while(0)
|
||||
#else
|
||||
#define UNTESTED_FUNCTION()
|
||||
#endif
|
||||
|
||||
// --------------- Compatibility Includes ------------------
|
||||
/*
|
||||
ESP-IDF currently does not have a "Include what you use" policy. A lot of files implicitly pull in API through
|
||||
|
Reference in New Issue
Block a user