On embedded microcontrollers such as STM32/ESP/ARM in general is there a deterioration problem in case of high I/O on the external flash?
i'm talking about the famous 4Mb/8Mb/16Mb QSPI flash where generally the codes resides as well.
Say that each 30 seconds i'm going to write an int for example and i do that for all the day long, will the flash die sooner or later?
In this case what is the best HW for embedded system that is capable of withstand high IO? What are the workarounds?
Look up the number of write cycles in the datasheet, and do the math. Let's say your part can endure 1000000 write cycles, then doing a write every 30 seconds will start to wear it out in 30 million seconds. A year is about 31.5 million seconds...
Some FRAM (Ferroelectric RAM) can support up to 1012 read/write cycles. It will last for 31689 years even if you are accessing it in every second. Note that reads also count, but that won't be a problem unless your device loses power and must boot up in every second.
Wear leveling, that's what the controllers in SD cards and SSD drives do. But you'd need a disproportionately big flash to do that for a few counters.
Some microcontrollers have a small amount of backup RAM that can be powered with a battery or supercap over a separate Vbat pin. Don't forget to change the battery every few years. For the price of a battery and a socket you'd get an FRAM though.