I'm trying to change the APP_START_ADDRESS in the boot_emac_flash example and it's not working. When the APP_START_ADDRESS is 0x4000, then it works fine.
Here's what I'm doing, I'm using the DK-TM4C129X. I program the boot_emac_flash example and then I program the freertos_demo. I've set the flash settings so that when I program the freertos_demo, it doesn't erase the bootloader area. When I reset the device, the bootloader correctly jumps to the application and the application runs properly. Also note that I did change the APP_BASE of the freertos_demo to start at 0x4000. However, if I change the settings in the bl_config.h to indicate that the application starts at 0x8000 instead of 0x4000 and I change the freertos_demo to start at 0x8000, the bootloader doesn't jump to the application. Is there something else that I need to change in order for the bootloader to jump to the application at a different address than 0x4000 since 0x4000 was the default in the bootloader.
Thanks.