modules: flashparams: Change size to uint32_t

So flash sector of 64Kbyes and 128Kbytes can also be used.
This commit is contained in:
José Roberto de Souza 2017-03-07 16:39:49 -08:00 committed by Lorenz Meier
parent a2670bdbc8
commit 75e7cfcbe8
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ __EXPORT extern const flash_file_token_t parameters_token;
*/
typedef struct sector_descriptor_t {
uint8_t page;
uint16_t size;
uint32_t size;
uint32_t address;
} sector_descriptor_t;