guberti commented on a change in pull request #8708:
URL: https://github.com/apache/tvm/pull/8708#discussion_r687248281



##########
File path: apps/microtvm/arduino/example_project/src/model.c
##########
@@ -0,0 +1,82 @@
+#ifndef TVM_IMPLEMENTATION_ARDUINO
+#define TVM_IMPLEMENTATION_ARDUINO
+
+#include "model.h"
+
+#include "Arduino.h"
+#include 
"standalone_crt/include/tvm/runtime/crt/internal/aot_executor/aot_executor.h"
+#include "standalone_crt/include/tvm/runtime/crt/stack_allocator.h"
+
+// AOT memory array
+static uint8_t g_aot_memory[WORKSPACE_SIZE];
+extern tvm_model_t tvmgen_default_network;
+tvm_workspace_t app_workspace;
+
+// Blink code for debugging purposes
+void TVMPlatformAbort(tvm_crt_error_t error) {
+  for (;;) {
+#ifdef LED_BUILTIN

Review comment:
       Changed to also `TVMLogf`




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to