Search Results

Search results 1-2 of 2.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • In startup code SEGGER_ARM_startup.s file as below, START_FUNC _start // // Call linker init functions which in turn performs the following: // * Perform segment init // * Perform heap init (if used) // * Call constructors of global Objects (if any exist) // ldr R4, =__SEGGER_init_table__ // Set table pointer to start of initialization table L(RunInit): ldr R0, [R4] // Get next initialization function from table adds R4, R4, #4 // Increment table pointer to point to function arguments blx R0 // …

  • We are using stm32mp157. [/quote]We have written code for all three cores (A7_0,A7_1,M4). Individually we are able to debug(with limitations), For final testing, we would like to debug one processor(one of the core) while other are running. How to load code to other cores to run/simulate the actual system. We are debugging only one core but others should be in running. How to load code and put them in the full run state for application testing. [/quote]