FUOTA: Facing issues while using flash memory instead of UnfragmentedData[FRAG_MAX_NB * FRAG_MAX_SIZE] (SRAM buffer). #1115
-
Hi, We are using B-L072Z-LRWAN1 board to perform the FUOTA.
You can get the function definitions in the attached text file. We got these things from the stm32 i-cube-lrwan example. We are facing the problem when there is loss of fragments in function FragDecoderProcess. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think I was able to solve my problem. As the fragment loss handler will write to the fragment location multiple times. In this process, as it tries to write the non-zero area error is coming. So, I am erasing the flash location before writing to that location. With this, the problem got solved. |
Beta Was this translation helpful? Give feedback.
I think I was able to solve my problem. As the fragment loss handler will write to the fragment location multiple times. In this process, as it tries to write the non-zero area error is coming.
So, I am erasing the flash location before writing to that location. With this, the problem got solved.