Skip to content

Commit 5f17cac

Browse files
authoredSep 23, 2020
Merge pull request #20 from pdp7/patch-2
Fix data type for tflOpsResolver
2 parents 312d312 + efa2548 commit 5f17cac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎GestureToEmoji/ArduinoSketches/IMU_Classifier/IMU_Classifier.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tflite::MicroErrorReporter tflErrorReporter;
4040
// pull in all the TFLM ops, you can remove this line and
4141
// only pull in the TFLM ops you need, if would like to reduce
4242
// the compiled size of the sketch.
43-
tflite::ops::micro::AllOpsResolver tflOpsResolver;
43+
tflite::AllOpsResolver tflOpsResolver;
4444

4545
const tflite::Model* tflModel = nullptr;
4646
tflite::MicroInterpreter* tflInterpreter = nullptr;

0 commit comments

Comments
 (0)
Please sign in to comment.