Thank you for your reply. The problem of the development board has been solved, but I have encountered a new problem. I followed the tutorial to import the program. After I solved some of the problems, the problems now appear as follows:
In file included from C:\Users\Admin\Documents\Arduino\sparkfun_tensorflowlite_sine\sparkfun_tensorflowlite_sine.ino:8:
C:\Users\Admin\Documents\Arduino\sparkfun_tensorflowlite_sine\tensorflow\lite\micro\micro_interpreter.h:17:10: fatal error: system_configuration.h: No such file or directory
#include <system_configuration.h>
^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
exit status 1
An error occurred while compiling for the development board SparkFun Edge.
I use... instead of the similar part of the error. Is there a problem with the StandardCplusplus-master library I installed? Is there a version restriction?
I want to ask if it is related to the version of tensorflowlite. I am not using the latest version here. The content in the video tutorial is used. The tensorflow folder is downloaded from the website (GitHub - tensorflow/tensorflow: An Open Source Machine Learning Framework for Everyone )
#include "TensorFlowLite.h"
#include "tensorflow/lite/micro/kernels/micro_ops.h"
#include "tensorflow/lite/micro/micro_error_reporter.h"
#include "tensorflow/lite/micro/micro_interpreter.h"
#include "tensorflow/lite/micro/micro_mutable_op_resolver.h"
#include "tensorflow/lite/version.h"
#include "sine_model.h"
I have another question. There is no ‘’tensorflow/lite/version‘’.h in the tensorflow folder on the Internet, but there is only this path in the tutorial. Now it is still compiled here. The first #include above cannot compile normally. .
If you can help me solve it, I would be very grateful.
