MCUXpresso flash without docking station

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

MCUXpresso flash without docking station

741 Views
dviver10
Contributor I

I made project using Mcuxepresso. Can I flash Nxp Iot without docking station an how ?

0 Kudos
3 Replies

582 Views
mario_castaneda
NXP TechSupport
NXP TechSupport

Hi Darko,

Please look at the next community post 

https://community.nxp.com/docs/DOC-342335  and https://community.nxp.com/thread/489834 

Regards,

Mario

0 Kudos

582 Views
dviver10
Contributor I

Tnx Mario. I made first project in MCUXepresso IDE, hello project imported from SDK_2.x_RapidIoT_MK64F12. Build project went without errors. Then I use Binary utility to create binary from rapid_iot_k64f_hello_world.axf. After that put my NXP rapi kit in mass storage device mode and drag rapid_iot_k64f_hello_world.bin to it. Kit made everything the same as I put firmware from NXP Studio IDE. After boot alication don work, only backlit is on, it is blocked i must reset it to put new apliccation.

0 Kudos

582 Views
mario_castaneda
NXP TechSupport
NXP TechSupport

Hi Darko,

Did you add the hello word code?

void Init_Display()
{
    Display_Connect(); /* triggers GUI_Init() */
    Backlight_SetLevel(BLIGHT_LEVEL_HIGH);

    GUI_SetBkColor(GUI_BLACK);
    GUI_SetColor(GUI_WHITE);
    /* Display a Message */
        GUI_SetFont(&GUI_Font8x18);
        GUI_SetBkColor(GUI_WHITE);
        GUI_Clear();
        GUI_SetColor(GUI_BLUE);
        GUI_DispString("\n Rapid IoT\n\n");
        GUI_DispString(" Hello World!\n\n");
}

Regards,

Mario

0 Kudos