Command line tool for OpenSDA Flashing

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Command line tool for OpenSDA Flashing

1,179 Views
jfrey
Contributor IV

I finally got around to working more on my command line tool to flash the DEVKIT-MPC57xx boards without having to launch Eclipse: GitHub - jed-frey/opensda_flasher 

It uses Python to call GDB and the PE GDB Server. Can be added to Jenkins to flash files after they've been compiled for unit testing. Can load to flash and to RAM (to avoid wear).

Install:

pip install git+https://github.com/jed-frey/opensda_flasher.git#egg=opensda_flasher

Examples:

  1. Program an elf to the device flash:

opensda_flasher flash C:\NXP\workspaceS32DS.Power12\ADC_MPC5744P\Debug\ADC_MPC5744P.elf

  1. Program an elf to the device RAM:

opensda_flasher debug C:\NXP\workspaceS32DS.Power12\ADC_MPC5744P\Debug_RAM\ADC_MPC5744P.elf

  1. Create a local init. This can be used to customize the settings. By default this is saved to osf.ini

opensda_flasher init

  1. Program an elf to the device flash with local config settings. osf may be used interchangeably with opensda_flasher

osf --config osf.ini flash C:\NXP\workspaceS32DS.Power12\ADC_MPC5744P\Debug\ADC_MPC5744P.elf

  1. Create a custom local init. The elf files can also be stored in the init.

osf --config=adc.ini init C:\NXP\workspaceS32DS.Power12\ADC_MPC5744P\Debug\ADC_MPC5744P.elf

Then use the config to flash the elf.

osf --config=adc.ini flash

Labels (1)
1 Reply

734 Views
jfrey
Contributor IV

Fixed issue with DEVKIT-MPC5748G timing out.

Added command line option "ports" to show what devices are connected.

0 Kudos