APP_Framework/Framework/:sovle the name error in the configuration files of CMSIS-NN

This commit is contained in:
WentaoWong 2022-02-18 14:36:40 +08:00
parent 513cc43f06
commit 48dfa06f79
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
menuconfig USING_CMSIS_5_DEMOAPP
bool "CMSIS-5 demo app"
depends on USING_USING_CMSIS_5_NN
depends on USING_CMSIS_5_NN
default n
if USING_CMSIS_5_DEMOAPP

View File

@ -4,11 +4,11 @@ menuconfig USING_CMSIS_5
if USING_CMSIS_5
menuconfig USING_USING_CMSIS_5_NN
menuconfig USING_CMSIS_5_NN
bool "CMSIS-5 NN"
default n
if USING_USING_CMSIS_5_NN
if USING_CMSIS_5_NN
config USING_CMSIS_5_NN_ACTIVATION
bool "CMSIS-5 NN ACTIVATION"

View File

@ -8,7 +8,7 @@ CPPPATH = []
CPPPATH += [os.path.join(cwd, 'Core/Include')]
if GetDepend('USING_USING_CMSIS_5_NN'):
if GetDepend('USING_CMSIS_5_NN'):
CPPPATH += [os.path.join(cwd, 'DSP/Include')]
CPPPATH += [os.path.join(cwd, 'NN/Include')]
CPPDEFINES += ['__FPU_PRESENT=1']