NXP Semiconductors LPC CM0 Series Скачать руководство пользователя страница 25

6.2 Clock test

The clock test procedure tests the oscilator frequency for the CPU core in the wrong frequency condition.

 

The default clock setting from the SDK library is used in the example. For a real application, ensure that the
reference clock source is not dependent on the primary (tested) clock.

  NOTE  

6.3 CPU register

The CPU register test procedure tests all CPU registers for the stuck-at condition (except for the program counter register). The
program counter test is implemented as a stand-alone safety routine.
Some tests stay in an endless loop in case of an error, others return a corresponding error message.

6.4 DIO test

The Digital Input/Output (DIO) test procedure performs the plausibility check of the processor's digital IO interface.

 

Make sure that the time between the "set" and "get" functions is sufficient for the GPIO peripheral speed.

  NOTE  

6.5 Invariable memory test

The invariable (Flash) memory test provides a CRC check of a dedicated part of memory. This test can be turned off in the

safety_config.h

 file.

The test consists of the following two parts:

• Post-build CRC calculation of the dedicated memory.
• Runtime CRC calculation and comparison with the post-build result.

The post-build calculation is different for each IDE:
In the IAR IDE, the CRC is calculated by the IDE directly using the linker (see Options->Build Action). The Flash test is fully
integrated to the example project in the IAR IDE. It is necessary only to turn this test on in the 

safety_config.h

 file.

In the uVision Keil IDE, the CRC is calculated by the Srecord third-party tool, which is called from the IDE (see Options → User
→ After Build) The Flash test is fully integrated to the example project in the uVison Keil IDE. It is only necessary to turn this test
on in the 

safety_config.h

 file. In case of any issues, see 

Arm uVison Keil IDE postbuild CRC

In the MCUXpresso IDE, the CRC is calculated by the Srecord third-party tool. The user must do some additional steps. For more
information, see 

MCUxpresso postbuild CRC

.

 

The invariable memory test example uses the 

crc.bat file for post-build calculation, so this example does not work

on a Unix/Mac operating system.

  NOTE  

 

When you debug your application with the Flash test turned on, be careful when using the breakpoint. The software
breakpoint usually changes the CRC result and causes a safety error.

  NOTE  

6.6 Variable memory test

The variable memory on the supported MCU is an on-chip RAM.
The RAM memory test is provided by the MarchC or MarchX tests.

Clock test

LPC CM0 Safety Example , Rev. 3, 07/2021

NXP Semiconductors

25

Содержание LPC CM0 Series

Страница 1: ...LPC CM0 Safety Example NXP Semiconductors Document identifier IEC60730BLPCCM0EUG User s Guide Rev 3 07 2021...

Страница 2: ...guide 3 Chapter 2 Hardware settings 4 Chapter 3 File structure 8 Chapter 4 Example application 10 Chapter 5 Running example 14 Chapter 6 IEC60730B tests 24 Chapter 7 Revision history 27 NXP Semiconduc...

Страница 3: ...gh the MCUXpresso SDK website This example user s guide describes how to set the hardware correctly and how to use the example code with the IEC60730B Safety library The library user s guide is the ma...

Страница 4: ...USB connector is open Short this jumper to use an external debug connector The default debugger in the example project is set to CMSIS DAP FreeMASTER FreeMASTER communication is used via an onboard d...

Страница 5: ...use the on board debugger make sure that jumper JP1 next to the USB connector is open Short this jumper to use an external debug connector The default debugger in the example project is set to CMSIS D...

Страница 6: ...wer the board via USB make sure that jumper JP2 is set to Loc Then connect the USB to connector J6 The default debugger in the example project is set to CMSIS DAP If downloading to the device does not...

Страница 7: ...expected value of the custom bandgap can be set in the safety_config h file define ADC_BANDGAP_LEVEL 2 5 Figure 3 Hardware connection of LPCXpresso51U68 The test voltage of 2 5 V is provided by a resi...

Страница 8: ...tains the source files for the peripheral test this is a common cross core These tests are compiled to library libIEC60730B_ core _COM_ compiler _ version a The compiler folder contains compiler suppo...

Страница 9: ...ure 5 Figure 5 Example of project structure in example folder This folder contains the example source file and three folders for the IDE project file iar mcux mdk The following files are generated by...

Страница 10: ...library and safety example related folders The safety related folders are the following Board this folder contains the files related to the board used clock_config h pin_config h board h and so on CP...

Страница 11: ...The project_setup_ your_board c file contains the setup functions clock port UART and so on The safety_cm0_lpc c file contains the handling function for safety routines from the IEC60730B library and...

Страница 12: ...NABLED 1 define FMSTR_SERIAL_ENABLE 1 Other defines are used to configure the safety test as a parameter to a function or to fill structures 4 3 safety_test_items c file The safety_test_items c and h...

Страница 13: ...file and the corresponding h file contain a library handling function Each function contains a detection If a safety error ocurrs the SafetyErrorHandling function is called Source file safety_cm0_lpc...

Страница 14: ...ng Running FreeMASTER Download and install FreeMASTER from www nxp com freemaster The example project is in the safety pmp file Open it Check the project settings for your application Open Project Opt...

Страница 15: ...Figure 9 Setting UART speed Now you can connect to the development board by pressing CTRL G or clicking the GO button FreeMASTER monitoring LPC CM0 Safety Example Rev 3 07 2021 NXP Semiconductors 15...

Страница 16: ...the MCUXpresso and uVision Keil IDEs In the IAR IDE use the ielftool integrated feature The SRecord utility is used to calculate the post build CRC without any changes In the postbuild an additional b...

Страница 17: ...structure in the input hex file is used to define the area where the CRC will be calculated All necessary information for the CRC will be read by the crc hex bat file from this structure Information t...

Страница 18: ...the target The best way to do this is to create a debug initialization file 5 2 2 2 Debug initialization settings By default the uVision Keil IDE downloads the output file specified in Options output...

Страница 19: ...t build calculation so this example does not work on Unix Mac operating systems NOTE To use the crc hec bat file in the MCUXpresso IDE do some settings in the IDE 1 Set the Options C C Build Settings...

Страница 20: ..._cat exe the path to the screcat exe utility Because the name of your poject is set as the BuildArtifactFileBaseName variable this postbuild is independent on your project name Figure 10 Configuration...

Страница 21: ...fined address but this section must be placed at the end of the output hex file 5 2 3 3 Flash loader configuration It is necessary to set a correct output file for the download to the target There are...

Страница 22: ...g GUI Flash Tool Only the SEGGER J Link probes in the GUI Flash Tool support hex files In the GUI Flash Tool settings select Workspace Configuration PROJECT_NAME _crc hex file for download Post build...

Страница 23: ...Figure 10 GUI Flash Tool SEGGER J Link Post build CRC calculation LPC CM0 Safety Example Rev 3 07 2021 NXP Semiconductors 23...

Страница 24: ...s set up correctly before calling the AIO test In some cases it is necessary to connect this signal externally by a wire to the corresponding pin The test is perfomed in a sequence as defined in the s...

Страница 25: ...ld result The post build calculation is different for each IDE In the IAR IDE the CRC is calculated by the IDE directly using the linker see Options Build Action The Flash test is fully integrated to...

Страница 26: ...tack is covered by the variable memory test The overflow or underflow of the stack can occur if the stack is incorrectly controlled or by defining the too low stack area for the given application Choo...

Страница 27: ...r SDK Description 0 2 9 0 Intial release 1 2 10 0 Change devices supported in SDK rel 2 10 2 2 10 0 Post build description added 3 Version cover SDK 2 9 and SDK 2 10 release document for web NXP Semic...

Страница 28: ...ould implement appropriate design and operating safeguards to minimize the risks associated with their applications and products NXP the NXP logo NXP SECURE CONNECTIONS FOR A SMARTER WORLD COOLFLUX EM...

Отзывы: