APP_Framework/Applications/:eliminate some warnings about menuconfig in linux

This commit is contained in:
chunyexixiaoyu 2021-12-03 13:55:30 +08:00
parent 60ce72b37a
commit d99d4e8f52
6 changed files with 72 additions and 72 deletions

View File

@ -1,17 +1,17 @@
menu "knowing app" menu "knowing app"
menuconfig APPLICATION_KNOWING menuconfig APPLICATION_KNOWING
bool "Using knowing apps" bool "Using knowing apps"
default n default n
if APPLICATION_KNOWING if APPLICATION_KNOWING
source "$APP_DIR/Applications/knowing_app/mnist/Kconfig" source "$APP_DIR/Applications/knowing_app/mnist/Kconfig"
source "$APP_DIR/Applications/knowing_app/face_detect/Kconfig" source "$APP_DIR/Applications/knowing_app/face_detect/Kconfig"
source "$APP_DIR/Applications/knowing_app/instrusion_detect/Kconfig" source "$APP_DIR/Applications/knowing_app/instrusion_detect/Kconfig"
source "$APP_DIR/Applications/knowing_app/helmet_detect/Kconfig" source "$APP_DIR/Applications/knowing_app/helmet_detect/Kconfig"
source "$APP_DIR/Applications/knowing_app/iris_ml_demo/Kconfig" source "$APP_DIR/Applications/knowing_app/iris_ml_demo/Kconfig"
source "$APP_DIR/Applications/knowing_app/k210_fft_test/Kconfig" source "$APP_DIR/Applications/knowing_app/k210_fft_test/Kconfig"
source "$APP_DIR/Applications/knowing_app/image_processing/Kconfig" source "$APP_DIR/Applications/knowing_app/image_processing/Kconfig"
source "$APP_DIR/Applications/knowing_app/cmsis_5_demo/Kconfig" source "$APP_DIR/Applications/knowing_app/cmsis_5_demo/Kconfig"
endif endif
endmenu endmenu

View File

@ -1,6 +1,6 @@
menuconfig USING_IMAGE_PROCESSING_APP menuconfig USING_IMAGE_PROCESSING_APP
bool "image processing app " bool "image processing app "
default n default n
if USING_IMAGE_PROCESSING_APP if USING_IMAGE_PROCESSING_APP
source "$APP_DIR/Applications/knowing_app/image_processing/TJpgDec_APP/Kconfig" source "$APP_DIR/Applications/knowing_app/image_processing/TJpgDec_APP/Kconfig"
endif endif

View File

@ -1,4 +1,4 @@
config IMAGE_PROCESSING_TJPGDEC_APP config IMAGE_PROCESSING_TJPGDEC_APP
bool "image processing apps/TJpgDec(example)" bool "image processing apps/TJpgDec(example)"
select IMAGE_PROCESSING_USING_TJPGD select IMAGE_PROCESSING_USING_TJPGD
default n default n

View File

@ -1,12 +1,12 @@
menuconfig SUPPORT_KNOWING_FRAMEWORK menuconfig SUPPORT_KNOWING_FRAMEWORK
bool "support knowing framework" bool "support knowing framework"
default y default y
if SUPPORT_KNOWING_FRAMEWORK if SUPPORT_KNOWING_FRAMEWORK
source "$APP_DIR/Framework/knowing/tensorflow-lite/Kconfig" source "$APP_DIR/Framework/knowing/tensorflow-lite/Kconfig"
source "$APP_DIR/Framework/knowing/kpu-postprocessing/Kconfig" source "$APP_DIR/Framework/knowing/kpu-postprocessing/Kconfig"
source "$APP_DIR/Framework/knowing/filter/Kconfig" source "$APP_DIR/Framework/knowing/filter/Kconfig"
source "$APP_DIR/Framework/knowing/ota/Kconfig" source "$APP_DIR/Framework/knowing/ota/Kconfig"
source "$APP_DIR/Framework/knowing/image_processing/Kconfig" source "$APP_DIR/Framework/knowing/image_processing/Kconfig"
source "$APP_DIR/Framework/knowing/cmsis_5/Kconfig" source "$APP_DIR/Framework/knowing/cmsis_5/Kconfig"
endif endif

View File

@ -1,6 +1,6 @@
menuconfig USING_IMAGE_PROCESSING menuconfig USING_IMAGE_PROCESSING
bool "image processing " bool "image processing "
default n default n
if USING_IMAGE_PROCESSING if USING_IMAGE_PROCESSING
source "$APP_DIR/Framework/knowing/image_processing/TJpgDec/Kconfig" source "$APP_DIR/Framework/knowing/image_processing/TJpgDec/Kconfig"
endif endif

View File

@ -1,27 +1,27 @@
menuconfig IMAGE_PROCESSING_USING_TJPGD menuconfig IMAGE_PROCESSING_USING_TJPGD
bool "TJpgDec: Tiny JPEG Decompressor." bool "TJpgDec: Tiny JPEG Decompressor."
default n default n
if IMAGE_PROCESSING_USING_TJPGD if IMAGE_PROCESSING_USING_TJPGD
config TJPGD_INPUT_BUFFER_SIZE config TJPGD_INPUT_BUFFER_SIZE
int "Size of stream input buffer" int "Size of stream input buffer"
default 512 default 512
choice choice
prompt "Output format" prompt "Output format"
default TJPGD_USING_FORMAT_RGB888 default TJPGD_USING_FORMAT_RGB888
help help
Select the RGB output format Select the RGB output format
config TJPGD_USING_FORMAT_RGB888 config TJPGD_USING_FORMAT_RGB888
bool "RGB888" bool "RGB888"
config TJPGD_USING_FORMAT_RGB565 config TJPGD_USING_FORMAT_RGB565
bool "RGB565" bool "RGB565"
endchoice endchoice
config TJPGD_USING_SCALE config TJPGD_USING_SCALE
bool "Use output descaling" bool "Use output descaling"
default y default y
config TJPGD_USING_TBLCLIP config TJPGD_USING_TBLCLIP
bool "Use table for saturation" bool "Use table for saturation"
default y default y
endif endif