初始提交:ESP-Scope 网页示波器固件(ESP32-S3)
基于 vtalpaert/esp-scope 编译 - 采样率 1Hz-83kHz - ADC1_CH0 (GPIO 1) 输入 - WiFi AP + Web UI - 内置 PWM 测试信号 (GPIO 4) - 单通道,0-3.3V 输入范围
This commit is contained in:
20
managed_components/espressif__cjson/Kconfig
Normal file
20
managed_components/espressif__cjson/Kconfig
Normal file
@@ -0,0 +1,20 @@
|
||||
menu "cJSON"
|
||||
|
||||
config CJSON_NESTING_LIMIT
|
||||
int "Maximum nesting depth for JSON parsing"
|
||||
default 1000
|
||||
help
|
||||
Limits how deeply nested arrays/objects can be before cJSON
|
||||
rejects to parse them. This is to prevent stack overflows.
|
||||
Lower values use less stack, higher values allow deeper nesting.
|
||||
|
||||
config CJSON_CIRCULAR_LIMIT
|
||||
int "Maximum depth for circular reference detection"
|
||||
default 10000
|
||||
help
|
||||
Limits the depth for circular reference detection during
|
||||
printing/comparison operations. This prevents infinite loops
|
||||
and stack overflows when processing JSON structures with
|
||||
circular references. Lower values use less stack.
|
||||
|
||||
endmenu
|
||||
Reference in New Issue
Block a user