Merge branch 'feature/esp_system_linux' into 'master'

esp_system partially buildable on Linux

Closes IDF-5983

See merge request espressif/esp-idf!21055
This commit is contained in:
Jakob Hasse
2022-11-16 22:38:48 +08:00
19 changed files with 305 additions and 60 deletions

View File

@@ -22,12 +22,6 @@
extern "C" {
#endif
// TODO: IDF-5983 From esp_task.h, should later be used from there
// or be refactored in IDF (e.g. move esp_task.h to freertos)
// See also configMINIMAL_STACK_SIZE for more information.
#define CONFIG_ESP_MAIN_TASK_STACK_SIZE ( ( unsigned short ) (0x4000 + 40) / sizeof(portSTACK_TYPE) ) // should be in Kconfig again
#define CONFIG_ESP_MAIN_TASK_AFFINITY 0
#define ESP_TASK_PRIO_MAX (configMAX_PRIORITIES)
#define ESP_TASK_PRIO_MIN (0)
#define ESP_TASK_MAIN_PRIO (ESP_TASK_PRIO_MIN + 1)