wangchdo commented on PR #17192: URL: https://github.com/apache/nuttx/pull/17192#issuecomment-3400944661
> according to the datasheet the flash size is 256k https://ww1.microchip.com/downloads/en/DeviceDoc/doc6478.pdf Hi @jerpelea, The flash memory is divided into three regions. In this update, I have enlarged the kflash region and reduced the uflash region accordingly to fix the build issue, the total size is not changed. ``` Before: **kflash (rx) : ORIGIN = 0x00080000, LENGTH = 64K uflash (rx) : ORIGIN = 0x00090000, LENGTH = 64K** xflash (rx) : ORIGIN = 0x000a0000, LENGTH = 128K After: **kflash (rx) : ORIGIN = 0x00080000, LENGTH = 65K uflash (rx) : ORIGIN = 0x00090400, LENGTH = 63K** xflash (rx) : ORIGIN = 0x000a0000, LENGTH = 128K ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
