From d0ec16eb2af91388563a70a2c34e23f3a05900ea Mon Sep 17 00:00:00 2001 From: Tom Gall Date: Wed, 12 Aug 2020 22:18:37 -0500 Subject: [PATCH] update tutorial to new TARGET as micro_dev is no more (#6262) Signed-off-by: Tom Gall --- tutorials/micro/micro_tflite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/micro/micro_tflite.py b/tutorials/micro/micro_tflite.py index 9838df724a3a..0b0af570a92b 100644 --- a/tutorials/micro/micro_tflite.py +++ b/tutorials/micro/micro_tflite.py @@ -152,7 +152,7 @@ # # 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) ######################################################################