Closed rodonguyen closed 1 year ago
One more question actually, these packages (in Src/main.cpp
) are nowhere to be found in TinyEngine repo: #include "genNN.h", #include "tinyengine_function.h", "stm32746g_discovery.h"
. Could you explain it?
Sorry VSCode search apparently doesn't work properly, I found them with search
in folder explorer.
So I think the reason it doesn't run properly is that it requires STM32CudeIDE (a compatible IDE), which is step 3.
Hi team,
This is quite an amateur question but I'm doing the Inference Tutorial up to step 2 (created a new directory and moved libraries).
So up to this point, I just want to run the empty
int main(void)
to make sure the libraries are loaded successfully and use another model in the future. IincludePath
in c_cpp_properties.json of C/C++ Intellisense extension the same as the tutorial's (Image 1)main.cpp
withC/C++: g++ build active file
Still, in
main.cpp
, the error appears in the first line#include "main.h"
sayingfatal error: main.h: No such file or directory
despite it is inInc
and included inincludePath
. What should I do to resolve this issue?Image 1
Image 2
Appreciate any support you can provide :) Please ask me if you need any clarification. Rodo