Joice
Joice
Hi, its good to see @hchaudhary1, @timandr made it work with NAND , i am also trying to add lfs to NAND based flash (winbond w25n01gv) with nrf52 but it...
``` const struct lfs_config cfg = { // block device operations .read = read_littlefs_wrapper, .prog = write_littlefs_wrapper, .erase = erase_littlefs_wrapper, .sync = sync_littlefs_wrapper, // block device configuration .read_size = 16,...
@hchaudhary1 thanks for the update, there was an issue with my spi driver while reading big blocks of code(limited dma size). now its working like a charm :)
Hi visakh, 1, Not sure, the minimum value should be the chip block size 1024*64 2, I have not used FTL, it will work without an FTL. 3, Only the...
Make sure that your read/write/erase functions are working fine. Also make some test cases to test all possible corner cases. it should work.
Hi @visakh-png i have used SPI drivers for interfacing. I didn't face any erase issues, i was able to create multiple files and read/write data. But I have also ran...
Hi @cederom Thanks for the reply. _Are you sure you are using DAPLink firmware and you have latest version?_ yes, i have 0253_sam3u2c_mkit_dk_dongle_nrf5x_0x5000.bin 2 _Are you sure the local onboard...
Hi, I think the afe4490 is working as the led started glowing since it will only start glowing after the chip initialization. The issue could be in the uart data...
Have you tried the arduino-plotter example ? Does this issue comes consistently ? what is the arduino library versoin ? Also share the GUI version. Can you please share some...
Hello, please have look at line 221, ``` if(afe44xx_data_ready == true){ IRtemp = (unsigned long) (IRtemp10); REDtemp = (unsigned long) (REDtemp10); ``` here we are storing raw values of IR...