samples: tflite-micro: fix magic_wand

Fixes accelerometer_handler.cc to import correct header
with TfLiteStatus since c_api_internal.h file was deleted in
the new standalone tflite-micro repo.

Removes import of version.h in main_functions.cc to match
tflite-micro version.

Signed-off-by: Lauren Murphy <lauren.murphy@intel.com>
This commit is contained in:
Lauren Murphy 2021-08-02 15:19:38 -05:00 committed by Christopher Friedt
commit bdae9399be
2 changed files with 1 additions and 2 deletions

View file

@ -19,7 +19,7 @@
#define kChannelNumber 3
#include <tensorflow/lite/c/c_api_internal.h>
#include <tensorflow/lite/c/c_api_types.h>
#include <tensorflow/lite/micro/micro_error_reporter.h>
extern int begin_index;

View file

@ -25,7 +25,6 @@
#include <tensorflow/lite/micro/micro_interpreter.h>
#include <tensorflow/lite/micro/micro_mutable_op_resolver.h>
#include <tensorflow/lite/schema/schema_generated.h>
#include <tensorflow/lite/version.h>
/* Globals, used for compatibility with Arduino-style sketches. */
namespace {