LazyKatydid

Results 3 comments of LazyKatydid

> 暂不支持的,这块处理不同芯片差异很大的 发现驱动SST26VF016B 这玩意默认开启Block Protect,调用写成功,但数据始终不对,一直查硬件问题,后来仔细看手册才发现这个问题。。。

根据手册直接增加解锁函数,加入初始化最后面。 ![image](https://user-images.githubusercontent.com/18182838/118787658-9bfc3f80-b8c5-11eb-894d-2257e304638e.png) ```C static sfud_err set_ULBPR(const sfud_flash *flash){ uint8_t cmd; sfud_err result = SFUD_SUCCESS; const sfud_spi *spi = &flash->spi; SFUD_ASSERT(flash); if (spi->lock) { spi->lock(spi); } result = set_write_enabled(flash, true); if...

![image](https://user-images.githubusercontent.com/18182838/121307096-37675a00-c932-11eb-9e0a-024ce8af07df.png) ![image](https://user-images.githubusercontent.com/18182838/121307199-55cd5580-c932-11eb-8fc2-b55123a7445a.png) 新版本 raw_crc 计算有问题? 还是rbl包头 已经更新一些参数?