e9582601e0
- Incremented project version from 2.4.1 to 2.4.2 in CMakeLists.txt. - Added support for `--build-options-json` in firmware_builder.py to allow custom build options. - Implemented validation for build options to ensure correct data types and structure. - Updated tests to cover new build options functionality and validation logic.
21 lines
573 B
JSON
21 lines
573 B
JSON
{
|
|
"manufacturer": "m5stack",
|
|
"type": "m5stack-core-s3",
|
|
"target": "esp32s3",
|
|
"builds": [
|
|
{
|
|
"name": "m5stack-core-s3",
|
|
"build_options": {
|
|
"camera_hmirror": false,
|
|
"camera_vflip": false
|
|
},
|
|
"sdkconfig_append": [
|
|
"CONFIG_SPIRAM_MODE_QUAD=y",
|
|
"CONFIG_CAMERA_GC0308=y",
|
|
"CONFIG_CAMERA_GC0308_AUTO_DETECT_DVP_INTERFACE_SENSOR=y",
|
|
"CONFIG_CAMERA_GC0308_DVP_YUV422_320X240_20FPS=y"
|
|
]
|
|
}
|
|
]
|
|
}
|