summaryrefslogtreecommitdiff
path: root/source/application/api/common/include/TensorFlowLiteMicro.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/application/api/common/include/TensorFlowLiteMicro.hpp')
-rw-r--r--source/application/api/common/include/TensorFlowLiteMicro.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/application/api/common/include/TensorFlowLiteMicro.hpp b/source/application/api/common/include/TensorFlowLiteMicro.hpp
index f6639fd..4f9c0b3 100644
--- a/source/application/api/common/include/TensorFlowLiteMicro.hpp
+++ b/source/application/api/common/include/TensorFlowLiteMicro.hpp
@@ -73,13 +73,6 @@ namespace app {
*/
QuantParams GetTensorQuantParams(TfLiteTensor* tensor);
- /**
- * @brief String logging functionality expected to be defined
- * by TensorFlow Lite Micro's error reporter.
- * @param[in] s Pointer to the string.
- */
- extern "C" void DebugLog(const char* s);
-
} /* namespace app */
} /* namespace arm */
@@ -88,4 +81,11 @@ namespace app {
*/
void PrintTensorFlowVersion();
+/**
+ * @brief String logging functionality expected to be defined
+ * by TensorFlow Lite Micro's error reporter.
+ * @param[in] s Pointer to the string.
+ */
+extern "C" void DebugLog(const char* s) __attribute__((__weak__));
+
#endif /* TENSORFLOW_LITE_MICRO_LOCAL_HPP */