I use Nano 33 IoT. I downloaded my Edge Impulse model as Arduino library and imported it to Arduino IDE. When I even just include it to any code and try to verify, I get this error log:
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h:178:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:46,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h:76:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q31_t read_q15x2 (
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h:110:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void write_q15x2_ia (
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h:131:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void write_q15x2 (
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h:151:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q31_t read_q7x4 (
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math_memory.h:184:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void write_q7x4_ia (
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h:180:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:46,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:136:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q31_t clip_q63_to_q31(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:146:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q15_t clip_q63_to_q15(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:156:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q7_t clip_q31_to_q7(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:166:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q15_t clip_q31_to_q15(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:176:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q63_t mult32x64(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:265:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __QADD8(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:283:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __QSUB8(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:301:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __QADD16(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:318:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SHADD16(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:334:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __QSUB16(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:350:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SHSUB16(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:366:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __QASX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:382:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SHASX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:398:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __QSAX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:414:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SHSAX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:430:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SMUSDX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:441:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SMUADX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:453:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE int32_t __QADD(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:464:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE int32_t __QSUB(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:475:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SMLAD(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:489:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SMLADX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:503:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SMLSDX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:517:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint64_t __SMLALD(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:532:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint64_t __SMLALDX(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:547:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SMUAD(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:559:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SMUSD(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:571:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SXTB16(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:581:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE int32_t __SMMLA(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/none.h:609:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t __SXTAB16(uint32_t val1, uint32_t val2)
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h:181:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:46,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/utils.h:53:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t arm_recip_q31(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/utils.h:105:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE uint32_t arm_recip_q15(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/statistics_functions.h:37:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/bayes_functions.h:36,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h:185,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:46,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/fast_math_functions.h:234:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE arm_status arm_sqrt_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h:189:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:46,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:287:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE float32_t arm_pid_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h:189:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:46,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:321:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q31_t arm_pid_q31(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:368:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE q15_t arm_pid_q15(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:453:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_park_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:485:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_park_q31(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:552:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_inv_park_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:584:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_inv_park_q31(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:653:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_clarke_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:681:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_clarke_q31(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:735:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_inv_clarke_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/controller_functions.h:763:1: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_inv_clarke_q31(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/arm_math.h:195:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:46,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h:2198:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_circularWrite_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h:2243:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_circularRead_f32(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h:2299:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_circularWrite_q15(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h:2343:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_circularRead_q15(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h:2400:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_circularWrite_q7(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/CMSIS/DSP/Include/dsp/filtering_functions.h:2444:3: error: '__STATIC_FORCEINLINE' does not name a type; did you mean '__STATIC_INLINE'?
__STATIC_FORCEINLINE void arm_circularRead_q7(
^~~~~~~~~~~~~~~~~~~~
__STATIC_INLINE
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp: In static member function 'static float ei::numpy::sqrt(float)':
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:78:9: error: 'arm_sqrt_f32' was not declared in this scope
arm_sqrt_f32(x, &temp);
^~~~~~~~~~~~
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:78:9: note: suggested alternative: 'arm_sort_f32'
arm_sqrt_f32(x, &temp);
^~~~~~~~~~~~
arm_sort_f32
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_model_types.h:25:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:21,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp: In static member function 'static int ei::numpy::stdev(ei::matrix_t*, ei::matrix_t*)':
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:1031:13: error: 'arm_sqrt_f32' was not declared in this scope
arm_sqrt_f32(var, &std);
^~~~~~~~~~~~
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:1031:13: note: suggested alternative: 'arm_sort_f32'
arm_sqrt_f32(var, &std);
^~~~~~~~~~~~
arm_sort_f32
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp: In static member function 'static int ei::numpy::skew(ei::matrix_t*, ei::matrix_t*)':
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:1084:13: error: 'arm_sqrt_f32' was not declared in this scope
arm_sqrt_f32(var * var * var, &var);
^~~~~~~~~~~~
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:1084:13: note: suggested alternative: 'arm_sort_f32'
arm_sqrt_f32(var * var * var, &var);
^~~~~~~~~~~~
arm_sort_f32
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp: In static member function 'static int ei::numpy::std_axis0_CMSIS(ei::matrix_t*, ei::matrix_t*)':
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:1878:13: error: 'arm_sqrt_f32' was not declared in this scope
arm_sqrt_f32(var, &std);
^~~~~~~~~~~~
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/dsp/numpy.hpp:1878:13: note: suggested alternative: 'arm_sort_f32'
arm_sqrt_f32(var, &std);
^~~~~~~~~~~~
arm_sort_f32
In file included from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/tensorflow/lite/micro/kernels/softmax.h:18:0,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/tensorflow/lite/micro/micro_mutable_op_resolver.h:35,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/tensorflow/lite/micro/all_ops_resolver.h:19,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/inferencing_engines/tflite_helper.h:35,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/inferencing_engines/tflite_eon.h:28,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_run_classifier.h:44,
from /home/asdasd/Arduino/libraries/nano2_inferencing/src/nano2_inferencing.h:49,
from /tmp/.arduinoIDE-unsaved2024712-159121-1kdnr89.500lj/Blink/Blink.ino:25:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_classifier_config.h: At global scope:
/home/asdasd/Arduino/libraries/nano2_inferencing/src/edge-impulse-sdk/classifier/ei_classifier_config.h:57:107: note: #pragma message: CMSIS-NN enabled, but neither __ARM_FEATURE_DSP nor __ARM_FEATURE_MVE defined. Falling back.
"CMSIS-NN enabled, but neither __ARM_FEATURE_DSP nor __ARM_FEATURE_MVE defined. Falling back.")
^
exit status 1
Compilation error: exit status 1