update tutorial to new TARGET as micro_dev is no more (#6262)
authorTom Gall <tom.gall@linaro.org>
Thu, 13 Aug 2020 03:18:37 +0000 (22:18 -0500)
committerGitHub <noreply@github.com>
Thu, 13 Aug 2020 03:18:37 +0000 (20:18 -0700)
Signed-off-by: Tom Gall <tom.gall@linaro.org>
tutorials/micro/micro_tflite.py

index 9838df7..0b0af57 100644 (file)
@@ -152,7 +152,7 @@ mod, params = relay.frontend.from_tflite(tflite_model,
 #
 # Setup the device config which is what will be used to communicate
 # with the microcontroller (a STM32F746 Discovery board)
-TARGET = 'c -device=micro_dev'
+TARGET = 'c --system-lib  --runtime=c'
 dev_config = micro.device.arm.stm32f746xx.generate_config("127.0.0.1", 6666)
 
 ######################################################################