Developer Cloud network.c Version Test - STM32N6570-DK
Yesterday I built a model from a 256x256x3 .tflite. The Cloud produced a zip file that included a network_atonbuf.xSPI2.raw file. This file is about 27KB in size.
What triggered the change from the network_data files?
The network.c knew about this .raw file and pointed at it 0x71000000. That's all good. I just rename it to .bin and loadi it with CubeProgrammer. But what I don't understand is the test for version:
#if LL_ATON_VERSION_MAJOR != 1 || LL_ATON_VERSION_MINOR != 1 || LL_ATON_VERSION_MICRO != 3 || LL_ATON_VERSION_DEV != 262
# error "Possible mismatch in ll_aton library used"
#endifWorking with the STM32N6-GettingStarted-ObjectDetection as my base this version test failed in Make. I just commented it out.
Am I going to have a problem?
