2024-07-23 07:22 AM
Hello! I recently used stm model zoo and deployed an image classification model on a chip. The flashing part is made automatically if the chip is connected, but I was wondering how to do it manually (using another software)?
I get these folders after processing the deployment code but I do not really understand which files to use.
If someone familiar with Model zoo can help me figure this out!
Thanks in advance!
Solved! Go to Solution.
2024-07-26 02:49 AM
You want to look at .elf or .bin files and flash those files using STM32CubeProgrammer.
The other option is to open the project in your favorite IDE that supports this STM32 and flash/start the program using the IDE (STM32CubeIDE for example)
2024-07-26 02:49 AM
You want to look at .elf or .bin files and flash those files using STM32CubeProgrammer.
The other option is to open the project in your favorite IDE that supports this STM32 and flash/start the program using the IDE (STM32CubeIDE for example)
2024-08-02 03:42 AM
Thank you for your answer Daniel!