3

My flash memory device A25L032 has 64 one time programmable bytes. It also has software and hardware protection modes for blocks, sectors as well as the whole chip.

What application do one time programmable bits have since flash is nonvolatile anyway and we also have protection modes for blocks and sectors.

quantum231
  • 11,843
  • 26
  • 106
  • 216

1 Answers1

4

Product serial number, among other things.

winny
  • 14,707
  • 6
  • 46
  • 66
  • 3
    Just to expand, a short list of things that I've used them for: serial number, hardware IDs, checksum for the bootloader. One of the more surprising uses is that we ended up using them as "hard coded" information for IO pins for a shared code base between processors. That let us have a "generic" C architecture and then just some custom code to read in those values that then configured the port selections. They could be hard coded because the hardware is, of course, static – b degnan Jun 11 '16 at 21:46