mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +02:00
feat(soc): Adds core_num definition for Linux target
Closes https://github.com/espressif/esp-idf/issues/15758
This commit is contained in:
@ -11,6 +11,10 @@ config SOC_EFUSE_KEY_PURPOSE_FIELD
|
|||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config SOC_CPU_CORES_NUM
|
||||||
|
int
|
||||||
|
default 1
|
||||||
|
|
||||||
config SOC_GPIO_IN_RANGE_MAX
|
config SOC_GPIO_IN_RANGE_MAX
|
||||||
int
|
int
|
||||||
default 65535
|
default 65535
|
||||||
|
@ -25,6 +25,9 @@
|
|||||||
#define SOC_EFUSE_SUPPORTED (1)
|
#define SOC_EFUSE_SUPPORTED (1)
|
||||||
#define SOC_EFUSE_KEY_PURPOSE_FIELD (1)
|
#define SOC_EFUSE_KEY_PURPOSE_FIELD (1)
|
||||||
|
|
||||||
|
/*-------------------------- CPU CAPS ----------------------------------------*/
|
||||||
|
#define SOC_CPU_CORES_NUM (1U)
|
||||||
|
|
||||||
/*-------------------------- GPIO CAPS ---------------------------------------*/
|
/*-------------------------- GPIO CAPS ---------------------------------------*/
|
||||||
#define SOC_GPIO_IN_RANGE_MAX (65535)
|
#define SOC_GPIO_IN_RANGE_MAX (65535)
|
||||||
#define SOC_GPIO_OUT_RANGE_MAX (65535)
|
#define SOC_GPIO_OUT_RANGE_MAX (65535)
|
||||||
|
Reference in New Issue
Block a user