Merge branch 'feature/add_core_num_def_for_linux_v5.4' into 'release/v5.4'

feat(soc): Adds core_num definition for Linux target (v5.4)

See merge request espressif/esp-idf!38485
This commit is contained in:
Marius Vikhammer
2025-04-23 17:38:08 +08:00
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)