Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#
Tip/Trick

ST Micro-electronics Device Firmware Upgrade (DFU/DfuSe) from C#

Rate me:
Please Sign up or sign in to vote.
5.00/5 (14 votes)
12 Mar 2013CPOL4 min read 134.2K   4.4K   26   38
ST provide a DFU module for their STM32 micro-controllers for firmware upgrade over USB. This is an example of how to use it from C#.

Introduction

ST Micro-electronics STM32F series micro-controllers have the possibility to be programmed via USB using ST's DFU protocol. Some of their micros have the DFU module in ROM and all can have it in FLASH. DFU is a very handy way to program a micro-controller, particularly when it is in the micro's ROM, but all the example code from ST is in C++ and is somewhat complicated and buggy. ST's version of DFU is called DfuSe (Device firmware upgrade STMicroelectronics Extension).

Using this code, I have been able to implement a scheme whereby the C# application which is communicating with the ST micro-controller based hardware, is able to automatically update the hardware's firmware. So when the C# application is updated, the firmware gets updated too.

Background

ST provides a C++ demo application, which includes the Windows drivers for the DFU device and two DLLs which this application requires (STDFU.dll, STTubeDevice30.dll). I'm not sure of the redistribution terms of the DLLs so you should download them directly from ST by downloading and installing ST's demo package (see below). Then copy the two DLLs into the main solution directory, from where they will be copied into the appropriate bin directory when the solution is built.

ST provides a STDFU library specification (UM0384) and file format document (UM0391) as part of the demo package.

Some of the USB communications has been borrowed from an excellent article on USB HID programming that I found here.

ST's application uses another two DLLs, STDFUFiles.dll and STDFUPRT.dll. These perform higher level functions which are either not performed by my example, or done by the C#. I just wanted to write as much of the code in C# as possible, and minimise time spent trying to decode DLL function calls. I also haven't bothered to implement any more functionality than the bare minimum I needed, but I hope this will provide a starting point for people wanting to do more.

DFU files can be generated from HEX or S19 files by an application which is included in ST's demo package. So you can take the HEX file output from your compiler (e.g., Keil's MDK-ARM) and convert it into a DFU file which can then be programmed into a micro-controller using this application. Normally, this is something you would do with released code, rather than during software development. Using the DFU avoids the need for the production department or service engineer to have a JTAG programmer, and the need to directly access the target hardware as long as the USB port is accessible.

Using the Code

The supplied code is a demo application plus my FirmwareUpdate class which does the hard work of communicating with the hardware. My intention is more that it provides an example of how to implement DFU programming in your own test harness than that it be used standalone. I don't claim to be an expert in USB or P/Invoke, what I am presenting has been patched together by running the C++ demo under a debugger and experimentation.

IFirmwareUpdate is of course an interface class to the FirmwareUpdate class. To do a firmware update, first hook the OnFirmwareUpdateProgress event to an event handler, then call UpdateFirmware with the path of the DFU file. You make like to use ParseDFU_File beforehand to obtain the intended VID and PID of the DFU file so you can check that they are correct for the target hardware.

This code has been tested against a STM32F207's ROM bootloader, a STM32F103 running a FLASH DFU module (as copied from ST's example) in the bottom $3000 bytes to load an application into the FLASH from $08003000 onwards, and another STM32F103 running a slightly different version of ST's DFU example. I have built the project both "x86" and "x64". You will need to install the correct version of the DFU driver, as supplied in the form of an installer EXE file in ST's demo package.

You may notice a function called FindAndDetachHID. This is for use with a HID device (Human Interface Device, such as keyboard or joystick, but also one of the easiest USB classes to use for any kind of low data rate I/O device) which supports the "HID detach" feature. This is basically a special message telling the device to stop being whatever it is, disconnect from the computer, and then re-connect as a DFU device. ST's demo app supports this feature.

History

  • 19/2/2013: First posted.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer Expedition Electrics
United Kingdom United Kingdom
Started programming aged 10 on a ZX81 ("Daddy - what's a program?"), since then have done electronics and software for variety of things, mostly instrumentation, in a variety of languages but these days mostly C for the firmware and C# for the PC. Perhaps the project I'm proudest of was the Z80 based computer entirely hand soldered on veroboard!

Comments and Discussions

 
QuestionIS IT POSSIBLE TO GET THE 64 bit version of the dll files? Pin
Gabriel Tetteh20-Mar-24 19:59
Gabriel Tetteh20-Mar-24 19:59 
QuestionDFU device not detected on STM32F446RE board Pin
Jake_The_Snake4-Nov-23 23:29
Jake_The_Snake4-Nov-23 23:29 
SuggestionGet it working on STM32F373 Pin
Nico En2-Apr-19 5:26
Nico En2-Apr-19 5:26 
QuestionDFU Read File Failed Pin
AndyW9996-Nov-18 3:41
AndyW9996-Nov-18 3:41 
AnswerRe: DFU Read File Failed Pin
Member 1599652924-May-23 21:33
Member 1599652924-May-23 21:33 
QuestionNot possible to read DLL-filen STDFU.dll Pin
Member 119034472-Sep-18 19:52
Member 119034472-Sep-18 19:52 
QuestionAbout STDFU Error Code 0 Pin
Member 1390698831-Jul-18 3:37
Member 1390698831-Jul-18 3:37 
QuestionAbout Com Port Selection Pin
Member 1390698831-Jul-18 2:41
Member 1390698831-Jul-18 2:41 
QuestionWrong Input String exception Pin
Member 138698986-Jul-18 1:59
Member 138698986-Jul-18 1:59 
QuestionFYI _parentHandle is not defined and causes crash if device is HID Pin
Roger Clark Melbourne23-May-18 20:53
Roger Clark Melbourne23-May-18 20:53 
QuestionTweaked and published some NuGet packages Pin
Member 1383414222-May-18 7:36
Member 1383414222-May-18 7:36 
GeneralMy vote of 5 Pin
Member 1342871625-Oct-17 4:35
Member 1342871625-Oct-17 4:35 
QuestionDownload Failing (STM32F072) Pin
Chris Jameson-Groves3-Oct-17 6:23
Chris Jameson-Groves3-Oct-17 6:23 
AnswerRe: Download Failing (STM32F072) Pin
Chris Jameson-Groves4-Oct-17 1:57
Chris Jameson-Groves4-Oct-17 1:57 
QuestionHas anyone tested this on the STM32F4 series chip? Pin
Jeremy Vance12-Aug-16 5:18
Jeremy Vance12-Aug-16 5:18 
AnswerRe: Has anyone tested this on the STM32F4 series chip? Pin
Member 127129061-Sep-16 5:12
Member 127129061-Sep-16 5:12 
AnswerRe: Has anyone tested this on the STM32F4 series chip? Pin
rbelivan7-Sep-16 3:19
rbelivan7-Sep-16 3:19 
AnswerRe: Has anyone tested this on the STM32F4 series chip? Pin
NikolaB29-Jan-17 21:41
NikolaB29-Jan-17 21:41 
QuestionCode Verification Pin
rbelivan15-Jun-16 14:18
rbelivan15-Jun-16 14:18 
AnswerRe: Code Verification Pin
rbelivan7-Sep-16 6:06
rbelivan7-Sep-16 6:06 
Ok I did add this to verify the downloaded code:



C#
for (int nIdxElem = 0; nIdxElem < dfuTarBurn.aelements.Length; ++nIdxElem)
 {
     DFUElement dfuElem = dfuTarBurn.aelements[nIdxElem];

     // check the data in MaxWriteBlockSize (2048byte) blocks
     for (UInt32 BlockNumber = 0; BlockNumber <= (uint)dfuElem.abyData.Length / MaxWriteBlockSize; BlockNumber++)
     {
         if (OnFirmwareUpdateProgress != null) OnFirmwareUpdateProgress(this,
                new FirmwareUpdateProgressEventArgs(10 + (80 * BlockNumber * MaxWriteBlockSize / dfuElem.abyData.Length),
                "Verify block " + BlockNumber.ToString(), false));
         // Get the data for write and massage it into a 2048 byte block
         byte[] Block = dfuElem.abyData.Skip((int)(MaxWriteBlockSize * BlockNumber)).Take((int)MaxWriteBlockSize).ToArray();
         int BLen = Block.Length;
         if (Block.Length < MaxWriteBlockSize)
         {
              i = Block.Length;
             Array.Resize(ref Block, (int)MaxWriteBlockSize);
             // Pad with 0xFF so our CRC matches the ST Bootloader and the ULink's CRC
             for (; i < MaxWriteBlockSize; i++)
             {
                 Block[i] = 0xFF;
             }
         }
         CheckBlock(hDevice, dfuElem.dwAddr, Block, BlockNumber, BLen);
         System.Threading.Thread.Sleep(20);
     }



and here is the chechblock function:



C#
private void CheckBlock(IntPtr hDevice, UInt32 Address, byte[] Data, UInt32 BlockNumber, int BlockLen)
 {
     byte[] Command = new byte[5];
     byte[] ReadData=new byte[10000];
     DFU_Status dfuStatus = new DFU_Status();

     if (Data.Length > MaxWriteBlockSize)
     {
         throw new Exception("Block size too big (" + Data.Length.ToString() + ")");
     }

     if (0 == BlockNumber)
     {
         SetAddressPointer(hDevice, Address);
     }

     STDFU_GetStatus(ref hDevice, ref dfuStatus);
     while (dfuStatus.bState != STATE_DFU_IDLE)
     {
         STDFU_ClrStatus(ref hDevice);
         STDFU_GetStatus(ref hDevice, ref dfuStatus);
     }

     STDFU_Upload(ref hDevice, ReadData, (UInt32)Data.Length, (UInt16)(BlockNumber + 2));
     for(int i=0;i<BlockLen;i++)
     {
         if(Data[i] != ReadData[i])// && Data[i] !=255)
         {
             throw new Exception("Verification error at: (" + BlockNumber.ToString() + ")");
         }
     }

     STDFU_GetStatus(ref hDevice, ref dfuStatus);
     while (dfuStatus.bState != STATE_DFU_IDLE)
     {
         STDFU_ClrStatus(ref hDevice);
         STDFU_GetStatus(ref hDevice, ref dfuStatus);
     }
 }


remember to add the upload:



C#
[DllImport("STDFU.dll", EntryPoint = "STDFU_Upload", CharSet = CharSet.Ansi)]
public static extern UInt32 STDFU_Upload(ref IntPtr hDevice, [MarshalAs(UnmanagedType.LPArray)]byte[] pBuffer, UInt32 nBytes, UInt16 nBlocks);

GeneralThank you! Pin
kotofalk26-Mar-16 2:24
kotofalk26-Mar-16 2:24 
QuestionThank You Pin
Denziljr5-Nov-15 22:02
Denziljr5-Nov-15 22:02 
SuggestionRead Protection Bit Pin
stukdev2-Nov-15 21:50
stukdev2-Nov-15 21:50 
QuestionNeeded C# application for .hex file conversion into DFU(.dfu) file. Pin
Vinod KUmar S N4-Dec-14 23:20
Vinod KUmar S N4-Dec-14 23:20 
AnswerRe: Needed C# application for .hex file conversion into DFU(.dfu) file. Pin
vivchun8-Apr-15 13:49
vivchun8-Apr-15 13:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.