├── .ai ├── .ldupdatedone ├── network_trained_lstm.tflite_c_graph.json └── network_trained_lstm.tflite_report.json ├── .cproject ├── .mxproject ├── .project ├── .settings ├── language.settings.xml └── stm32cubeide.project.prefs ├── Core ├── Inc │ ├── main.h │ ├── stm32g0xx_hal_conf.h │ └── stm32g0xx_it.h ├── Src │ ├── main.c │ ├── stm32g0xx_hal_msp.c │ ├── stm32g0xx_it.c │ ├── sysmem.c │ └── system_stm32g0xx.c └── Startup │ └── startup_stm32g070rbtx.s ├── Middlewares └── ST │ └── AI │ ├── Inc │ ├── ai_common_config.h │ ├── ai_datatypes.h │ ├── ai_datatypes_defines.h │ ├── ai_datatypes_format.h │ ├── ai_datatypes_internal.h │ ├── ai_layer_custom_interface.h │ ├── ai_lite.h │ ├── ai_lite_inspect.h │ ├── ai_lite_interface.h │ ├── ai_lite_math_helpers.h │ ├── ai_math_helpers.h │ ├── ai_platform.h │ ├── ai_platform_interface.h │ ├── core_common.h │ ├── core_convert.h │ ├── core_datatypes.h │ ├── core_log.h │ ├── core_net_inspect.h │ ├── core_net_inspect_interface.h │ ├── core_private.h │ ├── datatypes_network.h │ ├── formats_list.h │ ├── layers.h │ ├── layers_common.h │ ├── layers_conv2d.h │ ├── layers_conv2d_dqnn.h │ ├── layers_custom.h │ ├── layers_dense.h │ ├── layers_dense_dqnn.h │ ├── layers_formats_converters.h │ ├── layers_generic.h │ ├── layers_generic_dqnn.h │ ├── layers_list.h │ ├── layers_lite_graph.h │ ├── layers_ml.h │ ├── layers_ml_iforest.h │ ├── layers_ml_linearclassifier.h │ ├── layers_ml_svc.h │ ├── layers_ml_svmregressor.h │ ├── layers_ml_treeensembleclassifier.h │ ├── layers_ml_treeensembleregressor.h │ ├── layers_nl.h │ ├── layers_norm.h │ ├── layers_pad_dqnn.h │ ├── layers_pad_generic.h │ ├── layers_pool.h │ ├── layers_pool_dqnn.h │ ├── layers_rnn.h │ ├── layers_sm.h │ ├── layers_upsample_generic.h │ ├── lite_bn_f32.h │ ├── lite_bn_integer.h │ ├── lite_conv2d.h │ ├── lite_conv2d_dqnn.h │ ├── lite_convert_dqnn.h │ ├── lite_dense_if32.h │ ├── lite_dense_is1.h │ ├── lite_dense_is1ws1.h │ ├── lite_dense_is8os1ws1.h │ ├── lite_dense_is8os8ws8.h │ ├── lite_dense_ws1.h │ ├── lite_dw.h │ ├── lite_dw_dqnn.h │ ├── lite_generic_float.h │ ├── lite_gru_f32.h │ ├── lite_maxpool_dqnn.h │ ├── lite_nl_generic_float.h │ ├── lite_nl_generic_integer.h │ ├── lite_nl_list.h │ ├── lite_operators.h │ ├── lite_pad_dqnn.h │ ├── lite_pad_generic.h │ ├── lite_pool_f32.h │ ├── lite_pw.h │ ├── lite_pw_dqnn.h │ ├── lite_upsample.h │ └── lite_upsample_generic.h │ ├── LICENSE.txt │ └── Lib │ └── NetworkRuntime810_CM0+_GCC.a ├── README.md ├── STM32G070RBTX_FLASH.ld ├── STM32G070_AI_TEST Debug.launch ├── STM32G070_AI_TEST.ioc ├── X-CUBE-AI ├── App │ ├── network.c │ ├── network.h │ ├── network_config.h │ ├── network_data.c │ ├── network_data.h │ ├── network_data_params.c │ ├── network_data_params.h │ └── network_generate_report.txt └── LICENSE.txt └── trained_lstm.tflite /.ai/.ldupdatedone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ai/network_trained_lstm.tflite_c_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/.ai/network_trained_lstm.tflite_c_graph.json -------------------------------------------------------------------------------- /.ai/network_trained_lstm.tflite_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/.ai/network_trained_lstm.tflite_report.json -------------------------------------------------------------------------------- /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/.cproject -------------------------------------------------------------------------------- /.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/.mxproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/stm32cubeide.project.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/.settings/stm32cubeide.project.prefs -------------------------------------------------------------------------------- /Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Inc/main.h -------------------------------------------------------------------------------- /Core/Inc/stm32g0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Inc/stm32g0xx_hal_conf.h -------------------------------------------------------------------------------- /Core/Inc/stm32g0xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Inc/stm32g0xx_it.h -------------------------------------------------------------------------------- /Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Src/main.c -------------------------------------------------------------------------------- /Core/Src/stm32g0xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Src/stm32g0xx_hal_msp.c -------------------------------------------------------------------------------- /Core/Src/stm32g0xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Src/stm32g0xx_it.c -------------------------------------------------------------------------------- /Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Src/sysmem.c -------------------------------------------------------------------------------- /Core/Src/system_stm32g0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Src/system_stm32g0xx.c -------------------------------------------------------------------------------- /Core/Startup/startup_stm32g070rbtx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Core/Startup/startup_stm32g070rbtx.s -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_common_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_common_config.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_datatypes.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_datatypes_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_datatypes_defines.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_datatypes_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_datatypes_format.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_datatypes_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_datatypes_internal.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_layer_custom_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_layer_custom_interface.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_lite.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_lite_inspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_lite_inspect.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_lite_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_lite_interface.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_lite_math_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_lite_math_helpers.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_math_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_math_helpers.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_platform.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/ai_platform_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/ai_platform_interface.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/core_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/core_common.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/core_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/core_convert.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/core_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/core_datatypes.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/core_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/core_log.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/core_net_inspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/core_net_inspect.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/core_net_inspect_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/core_net_inspect_interface.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/core_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/core_private.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/datatypes_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/datatypes_network.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/formats_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/formats_list.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_common.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_conv2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_conv2d.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_conv2d_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_conv2d_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_custom.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_dense.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_dense_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_dense_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_formats_converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_formats_converters.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_generic.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_generic_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_generic_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_list.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_lite_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_lite_graph.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_ml.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_ml_iforest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_ml_iforest.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_ml_linearclassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_ml_linearclassifier.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_ml_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_ml_svc.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_ml_svmregressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_ml_svmregressor.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_ml_treeensembleclassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_ml_treeensembleclassifier.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_ml_treeensembleregressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_ml_treeensembleregressor.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_nl.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_norm.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_pad_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_pad_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_pad_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_pad_generic.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_pool.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_pool_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_pool_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_rnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_rnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_sm.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/layers_upsample_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/layers_upsample_generic.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_bn_f32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_bn_f32.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_bn_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_bn_integer.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_conv2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_conv2d.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_conv2d_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_conv2d_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_convert_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_convert_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dense_if32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dense_if32.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dense_is1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dense_is1.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dense_is1ws1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dense_is1ws1.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dense_is8os1ws1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dense_is8os1ws1.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dense_is8os8ws8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dense_is8os8ws8.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dense_ws1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dense_ws1.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dw.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_dw_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_dw_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_generic_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_generic_float.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_gru_f32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_gru_f32.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_maxpool_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_maxpool_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_nl_generic_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_nl_generic_float.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_nl_generic_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_nl_generic_integer.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_nl_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_nl_list.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_operators.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_pad_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_pad_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_pad_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_pad_generic.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_pool_f32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_pool_f32.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_pw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_pw.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_pw_dqnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_pw_dqnn.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_upsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_upsample.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/Inc/lite_upsample_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Inc/lite_upsample_generic.h -------------------------------------------------------------------------------- /Middlewares/ST/AI/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/LICENSE.txt -------------------------------------------------------------------------------- /Middlewares/ST/AI/Lib/NetworkRuntime810_CM0+_GCC.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/Middlewares/ST/AI/Lib/NetworkRuntime810_CM0+_GCC.a -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/README.md -------------------------------------------------------------------------------- /STM32G070RBTX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/STM32G070RBTX_FLASH.ld -------------------------------------------------------------------------------- /STM32G070_AI_TEST Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/STM32G070_AI_TEST Debug.launch -------------------------------------------------------------------------------- /STM32G070_AI_TEST.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/STM32G070_AI_TEST.ioc -------------------------------------------------------------------------------- /X-CUBE-AI/App/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network.c -------------------------------------------------------------------------------- /X-CUBE-AI/App/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network.h -------------------------------------------------------------------------------- /X-CUBE-AI/App/network_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network_config.h -------------------------------------------------------------------------------- /X-CUBE-AI/App/network_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network_data.c -------------------------------------------------------------------------------- /X-CUBE-AI/App/network_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network_data.h -------------------------------------------------------------------------------- /X-CUBE-AI/App/network_data_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network_data_params.c -------------------------------------------------------------------------------- /X-CUBE-AI/App/network_data_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network_data_params.h -------------------------------------------------------------------------------- /X-CUBE-AI/App/network_generate_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/App/network_generate_report.txt -------------------------------------------------------------------------------- /X-CUBE-AI/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/X-CUBE-AI/LICENSE.txt -------------------------------------------------------------------------------- /trained_lstm.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colin2135/STM32G070_AI_TEST/HEAD/trained_lstm.tflite --------------------------------------------------------------------------------