We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16d7910 + d889031 commit 784d80bCopy full SHA for 784d80b
components/soc/linux/include/soc/Kconfig.soc_caps.in
@@ -11,6 +11,10 @@ config SOC_EFUSE_KEY_PURPOSE_FIELD
11
bool
12
default y
13
14
+config SOC_CPU_CORES_NUM
15
+ int
16
+ default 1
17
+
18
config SOC_GPIO_IN_RANGE_MAX
19
int
20
default 65535
components/soc/linux/include/soc/soc_caps.h
@@ -25,6 +25,9 @@
25
#define SOC_EFUSE_SUPPORTED (1)
26
#define SOC_EFUSE_KEY_PURPOSE_FIELD (1)
27
28
+/*-------------------------- CPU CAPS ----------------------------------------*/
29
+#define SOC_CPU_CORES_NUM (1U)
30
31
/*-------------------------- GPIO CAPS ---------------------------------------*/
32
#define SOC_GPIO_IN_RANGE_MAX (65535)
33
#define SOC_GPIO_OUT_RANGE_MAX (65535)
0 commit comments