Using Storage with the W25 flash chips #6341
Replies: 1 comment
-
Posted at 2020-10-06 by parasquid BTW my use case here would be to try and do a circular buffer for my air quality sensor https://hackaday.io/project/174293-bleifying-a-honeywell-pm-sensor Instead of saving the data onto an SD card, I thought of using spi flash instead which would be faster. That way I can query data for the past 100 points or so (depending on the size of the spi flash). Posted at 2020-10-06 by @fanoush There is Flash api (blocks) and there is Storage api (files). With Bangle came the feature that the SPI flash can be used together with internal flash i.e. same Flash api works with both. SPI flash is mapped to address 0x60000000 see this. Then there is Storage which is layered on top of Flash and you select which address and how many blocks are used for files. So you can use internal flash or SPI flash based on the address you pick, for bangle this is here So with bangle both is in SPI flash. In my builds I keep Storage in internal flash but SPI is still accessible via Flash API over address 0x60000000 and up. Reason for such Storage setup is that internal flash is faster and you can use data and run javascript in place - big strings points directly to flash and no RAM is needed for that. The best would be to have two Storage 'drives' one for javascript code and some smaller data files and another bigger one in SPI flash. There is issue for that idea here espruino/Espruino#1899 Anyway, if you want just block access - circular buffer then indeed you don't need W25 module and the functionality can be builtin via the Flash API https://www.espruino.com/Reference#Flash if you map the SPI flash in board file. Posted at 2020-10-06 by parasquid
Got it, this looks like the use case I'm looking for. I'm was interested in the Storage API abstracting the access to the notion of files and doing the flash management behind the scenes, but I guess just designing the data so it fits the blocks (and then writing blocks) would work as well. Posted at 2020-10-06 by parasquid So in this case,
if I add something like that in a custom board file, is there anything else i need to do so I can have the same layout as you mentioned: Storage in internal flash and then SPI accessible via Flash API ? Or I just need to add that board definition and that's it? Posted at 2020-10-06 by parasquid Ah, looks like it's like this on the RAK5010
which I expect the commented out lines would relocate the storage to external flash Posted at 2020-10-06 by @fanoush Yes, that's it. Keep storage (saved_code section) as is. Then use Flash.getFree() to see it is there, and then just read/write/erase it via adresses above 0x60000000. If the Flash api would return all zeroes then maybe you will also need to wake up SPI flash from deep sleep but maybe it will just work. Posted at 2020-10-06 by @gfwilliams That's correct, yes - so if you just want the flash API you can do what you suggested. As soon as you try and access 0x60000000 and above then you'll be using the W25 :) Posted at 2020-10-06 by parasquid Thanks! One more question, I've got a few of the macronix qspi flash (the same one on the nRF52840DK) Does Espruino take advantage of quad spi on the nRF52840 or will it just run using normal spi? Posted at 2020-10-06 by @gfwilliams It just uses normal SPI at the moment. As far as I know nRF52840 can actually map the memory into its address space in hardware, so that'd be an even better solution :) Posted at 2020-10-06 by parasquid Gotcha. Looking forward to the next Espruino board that incorporates the nRF52840 :) Posted at 2020-10-08 by parasquid Looks like everything's working:
I used the common Arduino spi pins for the mapping:
I wonder if we can just add in spiflash by default on the boards as a placeholder since spi can reuse the pins anyway (at least on the pixl, since it mimics the Arduino layout)? And maybe just pass in the cs pin when trying to use the Flash module just in case you'd want to reuse pin 10 for your own spi peripheral. Attachments: Posted at 2020-10-09 by @gfwilliams That's great! I'm not so sure about having it built-in though - on Pixl.js I'm already having to leave out functionality I'd like (eg SHA256 and AES) just to get everything else in, so I think something like this probably isn't worth removing other functionality for. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2020-10-06 by parasquid
I got myself one of those W25 spi flash chips, and I was wondering if instead of using the W25 module, can we somehow abstract all of that with the Storage module?
I saw that Bangle has this which makes all storage be saved in external flash https://www.espruino.com/Bangle.js+Technical#software
Does that mean I just need to recompile following that of Bangle and it should just work? (not at my dev machine atm but will try it out when I can).
Attachments:
Beta Was this translation helpful? Give feedback.
All reactions