wdfk-prog

Results 106 comments of wdfk-prog

Also worth mentioning is the use of gcc and makefiles on Windows; Can only compile and clear, view the overall occupancy size and generate assembly files, other operations can not...

- CI errors are all Error: The operation was canceled.

> The minor style stuff aside, I think there's a slight problem with that algorithm as it changes behaviour by moving the initialization part into the loop. This might still...

> Sorry, this failure was an issue on our side. GitHub made a breaking change to their APIs recently.很抱歉,此失败是我们这边的问题。GitHub 最近对其 API 进行了重大更改。 > > To fix the pr this needs...

> Sorry again, I was having problems pushing to your branch and couldn't understand why. You set "Maintainers are allowed to edit this pull request." correctly but pushes are still...

> I left some review comments, mostly related to style/consistency with the rest of the codebase. > > But this looks good to me and we can probably bring it...

littlefs does not always occupy one or more blocks per file, and may leave some data in each block; You're talking about methods where, on some devices, there's no way...

> I use RT-THREAD nano version system, after porting littlefs to nor flash, I can not realize the open, close, read, write functions in file IO我用的是RT-THREAD nano版本的系统,把littlefs移植到nor flash后,无法实现文件IO的开、关、读、写功能 > >...

> > > 我用的是RT-THREAD nano版本的系统,把littlefs移植到nor flash后,我无法实现IO文件中的打开、关闭、读、写功能我用的是RT-THREAD nano版本的系统,把littlefs移植到nor flash后,无法实现文件IO的开、关、读、写功能 > > > 如何使用 littlefs 在文件 IO 的底部实现这些函数:如何使用 littlefs 在文件 IO 的底部实现这些函数:`int _open_r(struct _reent *ptr, const char *file, int flags, int mode);`...

> 当您使用缓存进行读取时,您可以严格读取填充缓冲区的数量,也可以在将来出现读取请求时尽可能多地读取。将多个读取合并为一个可以减少总线事务的数量并提高吞吐量,但如果我们读取未使用的数据,我们只是在浪费总线周期。 Thank you for your reply