Rocky Song
Rocky Song
这个板子没有boot脚。仅当固件损坏变砖才需要 1. 用电烙铁先去掉电阻R4(正面,镜头底座左下),R2(背面与R4接近的位置); 2. 短接R1(在R4旁边)和R5(在R2旁边) 3. 重新连接J-Link,在KEIL中重新下载程序固件; 4. 断开R1, R5, 5. 重焊R2和R4,或者直接短接。 具体原理可参考原理图(omvrt1_sch.pdf)中的“BOOT”部分介绍,截图如下,默认的启动方式是”Internal Boot(NormalBoot)”, 补救时改用”Serial Download(Bootloader)”,请勿尝试其它启动方式!
非常好啊!野火对我们的RT1050/1060支持力度很大的
Sorry for the inconvenience, you may add while(1) {} at the end of the __fatal_error(). GCC Makefile and related porting is not yet completed.
这个整体工作量比较大,尤其是py_image.c暴露的API。事实上如果移除python api,已经不能再说和openmv的使用兼容了,开发模式也不再是无需存盘和烧写立即见效。另外,C代码也部分依赖mpy的垃圾收集器,以及其它少量mpy的基础数据结构。 其实,对于多数计算量比较大的API,python与C之间转换的开销就很小了。 当然,对于一些实际的项目,可能只用比较单一的机器视觉功能。这就需要针对性地“特事特办”深度定制。 目前,在这个项目里还没有计划移除micropython.
Thank you all for your kind suggestions! After I look for the compiler options, I identified that the "-fno-builtin" and "-ffreestanding" prevent the armclang and gcc to generate LDR/STR for...