摘要:
fromelf --bin -o "$L@L.bin" "#L" 阅读全文
摘要:
https://www.cnblogs.com/freely/p/8022923.html 阅读全文
摘要:
片上flash加载fal的文章很多,就不多做赘述,我参考的链接 https://www.cnblogs.com/Monarch-T/p/12557936.html 唯一不一样的是,没有drv_flash_f7.c,要自己写。 drv_flash_f4.c #include "board.h" #in 阅读全文
摘要:
唤醒功能需要飞线,把RST跟GPIO16连接在一起 阅读全文
摘要:
适配器会消耗多少电? 很有趣的问题! 一般杂牌,转换效率在70%,也就是接着1w负载,实际上要多出0.4w消耗。 空载时,标准是小于150mw,杂牌往往高于这个值。 阅读全文
摘要:
找到jlink驱动下的JLinkARM.DLL文件 将 Keil_v5\ARM\Segger\JLinkARM.DLL替换 阅读全文
摘要:
user_main.c(删减) #include "smartconfig.h" void ICACHE_FLASH_ATTR smartconfig_done(sc_status status, void *pdata) { switch (status) { //连接未开始,请勿在此阶段开始连接 阅读全文
摘要:
https://www.bilibili.com/video/BV1m4411X75e 阅读全文
摘要:
VMware中的ubuntu虚拟机开机黑屏,无法打开桌面 https://blog.csdn.net/what_about_us/article/details/81207926 解决Linux安装 VMware tools 工具的方法 https://jingyan.baidu.com/artic 阅读全文
摘要:
1. pip install esptool 2. esptool.py port COM15 b 460800 read_flash 0x0 0x100000 dump.bin 运行情况 后面一大片ff就是未被使用的空间,可以手动删掉这部分保证烧写速度(有更好的方法请指点) 那么问题来了,这么轻易 阅读全文