tensorflowlite on Sparfun Redboard artemis

I tried to use tflite on Arduino Core, every eaxmple worked but hello world example in arduino tensorflow lite library is not working could anyone tell me how to compile it via arduino Ide, please help me, the code compiles for Arduino nano Ble 33 but not for sparkfun arrtemis even I tried strating code with if define(min)…undef(max) and lowered the baud rate but still no change. I am attaching the output or compilation log file, please have a look and spot the fixes.

Hi,

I don’t know why by now but if you add a file with the name “arduino_command_responder.cpp” incluiding am_bsp.h the IDE compiles and the example works.

Save the example to a folder.

Close Arduino IDE

Add a file to the folder with this name:

arduino_command_responder.cpp

including the following lines:

#include "am_bsp.h"

void none(){}

and open the project double clicking the .ino file hello_world.ino

You can view the results with the serial plotter

https://i.ibb.co/7CXnM5q/helloworld.png

Reply

Thank you so much it compiled successfully.