forked from xuos/xiuos
APP_Framework/Applications/:add configuration file about CMSIS-NN vegetable classify example
This commit is contained in:
parent
b7507101bf
commit
4c9a838011
|
@ -11,6 +11,11 @@ menuconfig USING_CMSIS_5_DEMOAPP
|
||||||
select IMAGE_PROCESSING_USING_TJPGD
|
select IMAGE_PROCESSING_USING_TJPGD
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
config USING_CMSIS_5_NN_DEMOAPP_VEG_CLASSIFY
|
||||||
|
bool "Using CMSIS-5 NN demo app vegetable classify"
|
||||||
|
select USING_IMAGE_PROCESSING
|
||||||
|
select IMAGE_PROCESSING_USING_TJPGD
|
||||||
|
default n
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
from building import *
|
||||||
|
import os
|
||||||
|
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
|
||||||
|
src = Split('''
|
||||||
|
model/nn_vegetable_classify.c
|
||||||
|
cmsisnn_vegetable_classify.c
|
||||||
|
''')
|
||||||
|
|
||||||
|
path = [
|
||||||
|
cwd + '/model',
|
||||||
|
cwd + '/demo'
|
||||||
|
]
|
||||||
|
|
||||||
|
group = DefineGroup('CMSISNN vegetable classify application', src, depend = ['USING_CMSIS_5_NN_DEMOAPP_VEG_CLASSIFY'], CPPPATH = path)
|
||||||
|
|
||||||
|
Return('group')
|
Loading…
Reference in New Issue