W25QXX in SPI with External Loader Part 3: External Loader development

In the third part of external loader, we shall develop the external loader and test it.

In this guide, we shall cover the following:

  • Getting the required files.
  • Modify the file.
  • Building the external loader.
  • Testing the external loader.
  • Project download.

10. Getting the required files.

ST offers the required files on their repository on Github which can be downloaded from here.

Download all four files.

Copy Dev_Inf.h to inc folder.

Copy both Dev_Inf.c and Loader_Src.c to src folder.

Copy linker.ld to main to main project folder.

The setup as following:

11. Modify the files:

Open the Dev_Inf.c source file and include the W25QXX.h header file as following:

C

In the data structure, give the external loader a name like this:

C

Specify the address to be used, in this case, 0xC0000000 (You can leave it for the default one since it is mapped to QSPI or any other address, just make sure it is not being used by any other peripheral).

C

Make sure the initial content is 0xFF

Now, open the Loader_Src.c source file and include the following:

C

In Init function, replace the content of the function with the following:

C

During the initialization, we are initialize the SPI, pins, delay and reset the flash to ensure stability.

Modify the read/write function as following:

C

Note: we are maintaining the same name of the function to ensure that external loader will work.

For sector erase:

C

For mass erase:

C

Check sum function:

C

Finally the verify function:

C

Now compiler the code and it should say compiled successfully.

11. Building the External Loader:

Now, right click on the project and select properties:

In C/C++ settings, MCU GCC Linker, General, select the linker script provided by ST.

Also, uncheck discard unused sections.

After that, in Build steps:

Add the following for the post build:

For macOS users:

C

For windows user:

C

Press Apply and close.

Compile the code and you should see the new linker script file as following:

Now, copy the file to STM32CubeProg to the following path:

For windows:

C

For macOS users:

C

Right click on the app and select show package contents.

12. Testing the external Loader:

Open STM32CubeProg and select external loader:

Now, connect the MCU, select External Loader and you should see our external loader.

Next, go this website and to generate random binary bin file according to your W25QXX size (4MB in this case):

Open erase and programming from STM32CubeProgrammer, select the random generated bin file, and enter the correct the address as following:

It will take a while to write the data (due to slow nature of SPI).

After flashing and verifying the flash, you should get the following two messages:

Congratulations, the external loader is working like a charm.

13. Project download:

/you may download the project from here:

Happy coding 🙂

Add Comment

Your email address will not be published. Required fields are marked *