feat(soc): Adds core_num definition for Linux target

Closes https://github.com/espressif/esp-idf/issues/15758
This commit is contained in:
Konstantin Kondrashov
2025-04-15 18:51:24 +03:00
parent 395295cc35
commit 295535985c
2 changed files with 7 additions and 0 deletions

View File

@ -11,6 +11,10 @@ config SOC_EFUSE_KEY_PURPOSE_FIELD
bool
default y
config SOC_CPU_CORES_NUM
int
default 1
config SOC_GPIO_IN_RANGE_MAX
int
default 65535

View File

@ -25,6 +25,9 @@
#define SOC_EFUSE_SUPPORTED (1)
#define SOC_EFUSE_KEY_PURPOSE_FIELD (1)
/*-------------------------- CPU CAPS ----------------------------------------*/
#define SOC_CPU_CORES_NUM (1U)
/*-------------------------- GPIO CAPS ---------------------------------------*/
#define SOC_GPIO_IN_RANGE_MAX (65535)
#define SOC_GPIO_OUT_RANGE_MAX (65535)