/
Windows CLI

Windows CLI

Prerequisites

Using the full functionality of Ganflasher-N requires the licence key to be entered once before first use.

The licence can be activated in the GUI or CLI.

GUI

About/License

 

CLI

Windows CLI | License activation using key

The configuration file contains a list of values necessary to connect the Gangflasher-N function to the microcontrollers connected to the USB port. By default, this file is created in the location C:\Users\Public\lastused_gfnxp_prog_setup.cfg when the Gangflasher-N GUI application is started and closed.

It is recommended to use the GUI application to correctly create and test the configuration file. A table with a description of the values contained in the configuration file can be found here:

Configuration File | Configuration File Export from GUI

The command file needed to run the autoprogram operation. Due to the flexibility of the Gangflasher application, it is possible to configure multiple types of external memory (Nor, Nand, SD Card etc.) and to load different file types (.bin, .srec, .hex) The Autoprogram function must be configured by the user.

More information on how to create an Autoprogram file can be found here:

Auto Program | Auto Program Setup

License activation using key

Layout

GangFlasher-N-CLI.exe -activate XXXX-XXXX-XXXX-XXXX

 

 

Example:

GangFlasher-N-CLI.exe -activate J38G-4YSC-9ANJ-8XGA

 

Configuration files

Configuration files should be specified with each command. Gangflasher-N requires two configuration files:

  • The first relates to the settings of the target, i.e. the MCU model and any settings related to memory and files.

  • The second configuration file contains the USB paths of the connected targets to the host computer.

These files are created in the Gangflasher GUI and saved to the default location:

C:\Users\Public

Feeding the configuration files to Ganflaher-N-CLI

Layout:

GangFlasher-N-CLI.exe -target_cfg config_file_path.cfg -usb_cfg usb_cfg_file_path.cfg

Example with default path:

GangFlasher-N-CLI.exe -target_cfg C:\Users\Public\lastused_gfnxp_prog_setup.cfg -usb_cfg C:\Users\Public\lastused_gfnxp_usb_setup.cfg

Configuration file layout

Configuration File | Configuration file content

;============= GangFlasher-N configuration ============= Unsigned_Flashloader_FileName Signed_Flashloader_FileName Image_FileName OTP_FileName Autoprogram_FileName DEK_Key_FileName OTFAD_Kek_FileName OTFAD_Keyblobs_FileName SRK_Fuses_FileName IEE_Kek1_FileName IEE_Kek2_FileName IEE_Keyblobs_FileName MCU_name MIMXRT1176 Boot_Device W25Q32JV Boot_Mode Target_EN 1 Interface 256 OTP_WrAutoProgramEn 0 OTP_LockAutoProgramEn 0 Flashloader_Default_Setup 1 UserMemoryOptions 0 EraseAll 0 USB_Timeout 5000 Boot_Dev_Type 0x0000 Memory_Configuration_Address 0x2000 Memory_Configuration_Word1 0xC0000007 Memory_Configuration_Word2 0x0000 Memory_ID 0x0009 Memory_Size 0x2000000 Property_Tag 0x000B Property_Value 0x0000 Read_Start_Address 0x0000 Read_Stop_Address 0x0000 Write_Erase_Start_Address 0x0000 Write_Erase_Stop_Address 0x0000 Flashloader_Load_Address 0x0000 Flashloader_Jump_Address 0x0000 Flashloader_VID 0x15A2 Flashloader_PID 0x0073 MCU_VID 0x0000 MCU_PID 0x0000

 

MCU=\\?\hid#vid_1fc9&pid_013d#b&28264aa4&0&0000#{4d1e55b2-f16f-11cf-88cb-001111000030} BOOTLOADER=\\?\hid#vid_15a2&pid_0073#b&644ad46&0&0000#{4d1e55b2-f16f-11cf-88cb-001111000030} USBDEVICE=\\?\usb#vid_15a2&pid_0073#a&10ecd8e2&0&4#{a5dcbf10-6530-11d2-901f-00c04fb951ed} MCU= BOOTLOADER= USBDEVICE= MCU= BOOTLOADER= USBDEVICE= MCU= BOOTLOADER= USBDEVICE= MCU= BOOTLOADER= USBDEVICE= MCU= BOOTLOADER= USBDEVICE= MCU= BOOTLOADER= USBDEVICE= MCU= BOOTLOADER= USBDEVICE=

Connection checking

Checking the connection to the selected target (like any command) requires a configuration file and a USB path file. The configuration file is created automatically when the GUI application is opened and closed. The USB path file, on the other hand, is created after the USB scan, which is described here:

An example of a command to test a connection is given below:

GangFlasher-N-CLI.exe -target_cfg C:\Users\Public\lastused_gfnxp_prog_setup.cfg -usb_cfg C:\Users\Public\lastused_gfnxp_usb_setup.cfg -cmd 2

-target_cfg path to the configuration file

-usb_cfg USB path file path

-cmd 2 opcode of the command to test the connection

The command response provides information on whether the connection to the target has been established and whether the flashloader is running.

 

Result of a successful Boot ROM connection
Result of a successful connection with Flashloader

Load Flashloader

The flashloader is the firmware that provides the connection between the host computer and the memories attached to the IMXRT devices. Without the flashloader running, commands that operate on the memory will not work.

GangFlasher-N-CLI.exe -target_cfg C:\Users\Public\lastused_gfnxp_prog_setup.cfg -usb_cfg C:\Users\Public\lastused_gfnxp_usb_setup.cfg -cmd 3

Reset

Reset means software reset and only works when Flashloader is running, the purpose of the reset is for IMXRT to return to Boot ROM.

 

Related content