Hi BK,
I come back on this project.
I work now with CW10.2, my project use MCF51JM128VLD.
I downloaded your project TWR-LCD JM128 Bootloader. (MCU MCF51JM128VLH)
"Build all" command works fine, only one warning about vector table (normal).
I got somme Errors with JM128 Bootloader when I tried to migrate to JM128VLD, I replaced some GPIO on some embedded components to solve error on processor expert.
The main error after "build all"
"Description Resource Path Location Type
function has no prototype Boot.c /TWR-LCD JM128 BootloaderModifie2/Sources/Bootloader line 82 C/C++ Problem"
and source lines code in Boot.c are below, RTOS_Strat() is not know. Strange...
void BOOT_Start(void) {
#if PL_IS_BOOTLOADER
BL_Bootloader(); /* does not return */
#else
RTOS_Start(); /* does not return */
#endif
}
This same code is build when I don't change anything and JM128VLH.
I tried to add FreeRTOS component, but FreeRTOS don't generate RTOS.h....
I am again waiting for your help.