Author Topic: Configuration for using AT45 D-Type SPI FLASH  (Read 7792 times)

Offline FAQ

  • Newbie
  • *
  • Posts: 27
    • View Profile
Configuration for using AT45 D-Type SPI FLASH
« on: May 15, 2009, 01:16:03 PM »

1) Is is necessary to set the define SPI_SW_UPLOAD when working with SPI FLASH used for the uFileSystem?

2) When using AT45 D-Type SPI FLASH devices is it important to specify the define SPI_FLASH_AT45XXXXD_TYPE and are these types compatible?

Offline mark

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3236
    • View Profile
    • uTasker
Re: Configuration for using AT45 D-Type SPI FLASH
« Reply #1 on: May 15, 2009, 01:19:28 PM »
Hi

Do NOT use SPI_SW_UPLOAD in this case – this is only required when ONLY using the FLASH exclusively for SW upload space and the uFileSystem is exclusively in internal FLASH.

The define SPI_FLASH_AT45XXXXD_TYPE is only required when working with the D-types in 256/512/1024 bit page size mode. It is in fact only required by the simulator.

Generally the standard #define SPI_FLASH_PAGE_LENGTH 528 (for example) can be used (rather than #define SPI_FLASH_PAGE_LENGTH 512). To set to 256/512/1024 byte page mode requires special instructions to be sent to the chip and this can also not be reverted. There is no real advantage of using 256/512/1024 mode, and I don’t actually know of projects which do! In some situations calculating the access address of 512 bytes pages is a bit easier but the 528 bit mode does increase the available memory by 3%!
The B and D types are otherwise fully compatible when left in the standard page size mode (which the B types can only do). The D types have in fact slower delete times (although one would expect the inverse...)

Regards

Mark