Hello,What version of the arm-none-eabi-gcc are you using ? (arm-none-eabi-gcc --version should do the trick)Also what is the location of the arm compiler you are using ? Is it the one provided with STM32CubeIDE ? To help debugging you can try to exe...
Hi @NBlan.1 Are you using the latest AIRunner version associated with X-Cube-AI 7.2.0 ?The Python and C code are linked together (stm32ai CLI, C code, and AIRunner should be aligned). One side will wait for specific messages from the other side and ...
Hi @BHuan.3 I just replied the thread you mentioned,Can you try enabling manually Apple's Rosetta 2 compatibility layer using the solution from this thread: https://github.com/nvm-sh/nvm/issues/2350#issuecomment-734132550Then try running again the s...
Hello,Unfortunately M1 macs are currently not natively supported, but did you try to enable Rosetta 2 compatibility mode ?You can try the answer used for "nvm" from this thread: https://github.com/nvm-sh/nvm/issues/2350#issuecomment-734132550 Then tr...
Hi @ASalc.1 ,I had this usecase few weeks ago. I had a model with 1 input and 2 outputs, the correct way to handle it is to start from 0 index: np.savez('data_io.npz', m_inputs_0=X, m_outputs_0=out_0, m_outputs_1=out_1)"m_inputs/outputs_xx" are inp...