Programming KW36 FlexNVM with MCUXpresso IDE Example

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

Programming KW36 FlexNVM with MCUXpresso IDE Example

Programming KW36 FlexNVM with MCUXpresso IDE Example

Introduction

This document provides guidance to program or store code in FlexNVM memory available in KW36 MCU to use it as P-Flash memory. This article uses as the starting point, an example imported from the connectivity software stack.

Software Requirements

1. FRDM-KW36 SDK 2.2.0.  

2. MCUXpresso IDE.

Hardware Requirements

1. FRDM-KW36 board.

Programming KW36 FlexNVM Example

The objective is to explain how to place a linker input section, variable or function into the FlexNVM memory. Before starting, the developer must know that the GNU linker cannot automatically place code or data across two separate memory regions, so the developer must analyze and manually choose what sections will be placed at which memory (P-Flash or FlexNVM) to get the most efficient way to use the total memory size.

This example will use the "bare-metal" version of the heart rate sensor project (included in the SDK), however, the same steps apply for the "freertos" version.

1. Select "Import SDK example(s)..." option in the "Quickstart Panel" window. Next, choose the FRDM-KW36 board. Click the "Next" button.

pastedImage_7.png

2. Expand "wireless_examples/bluetooth/hrs" folders and select bm project with the checkbox beside. Click the "Finish" button.

pastedImage_11.png

3. Replace the "MKW36Z512xxx4_connectivity.ld" file by "MKW36_connectivity_dflash_use.ld" (attached to this document) into the source folder in the workspace.

pastedImage_16.png

4. Open the "Project/Properties" window and select "C/C++Build/Settings". Next, go to the "MCU Linker/Managed Linker Script" perspective and edit the linker script name to "MKW36_connectivity_dflash_use.ld". Click "Apply and Close" button.

pastedImage_17.png

 

Placing input sections in FlexNVM memory

It is possible to program specific input sections in the FlexNVM memory following the next steps:

1. Open the "MKW36_connectivity_dflash_use.ld" linker file.

2. Search for output sections. In this example, we will edit the "text" section to save it in the FlexNVM array. Replace the "m_text" memory by "FLEX_NVM" memory as in the following picture. 

pastedImage_18.png

3. Debug the project using the CMSIS-DAP debugger.

4. Open the memory perspective. Add a new memory monitor with the "green plus icon" in the 0x1000_0000 address. Verify the expected results. 

 

 pastedImage_19.png

Placing variables and functions in FlexNVM memory

Also, it is possible to place a specific function or variable in the Flex NVM using attributes as follows:

1. Open the "MKW36_connectivity_dflash_use.ld" linker file.

2. Search for output sections. In this example, we will create a new section placed at Flex NVM address range. The name of this output section is "text_Flash2". Edit the linker file as shown below.

pastedImage_20.png

 

3. Create your functions and variables using the following section attribute (in this example we will open and place the text below in the "fsl_os_abstraction_bm.c" file under framework/OSAbstraction/Source folder in the workspace):

__attribute__ ((section(".d_flash_array"))) const uint32_t const_data_table[10] = {0,1,2,3,4,5,6,7,8,9};
__attribute__ ((section(".text.$FLEX_NVM"))) void delay (void)
{
       volatile uint32_t i = 0;
       for (i = 0; i < 800000; i++)
       {
              __asm("NOP");
       }
       
}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍

4. Use your own variables and functions in the code (this step is only for testing purpose, this is important to prevent any optimizations performed by the compiler). In this example, we will use the delay function and the const array in the main function located at "fsl_os_abstraction_bm.c" file.

uint32_t Use_Array;
uint32_t index;
    
for (index = 0; index < 10; index++)
{
       delay();
       Use_Array = const_data_table[10];
}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍

5. Debug the project using the CMSIS-DAP debugger.

6. Open the memory perspective. Add a new memory monitor with the "green plus icon" in the 0x1000_0000 address. Verify the expected results.

pastedImage_25.png

Attachments
No ratings
Version history
Last update:
‎09-10-2020 03:35 AM
Updated by: