中止脚本时的这种报错该怎么解决,运行时没问题
-
# This work is licensed under the MIT license. # Copyright (c) 2013-2023 OpenMV LLC. All rights reserved. # https://github.com/openmv/openmv/blob/master/LICENSE # # Blinky example import time from machine import LED led = LED("LED_BLUE") while True: led.on() time.sleep_ms(500) led.off() time.sleep_ms(500)
,不管什么程序在终止脚本时都会出现这种报错,哪怕用例程在终止脚本时也会有这种报错
-
我使用v4.5.5的固件,没有出现问题。
-
@kidswong999 是固件的问题,我把固件从4.5.6刷回去就没这个报错了,搞定了