This commit is contained in:
MMS 2024-01-04 13:54:52 -05:00
parent 44436db581
commit 7d7866e70d
2 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,7 @@ With dozens of silicon vendors offering ARM Cortex-M MCUs, each providing hundre
This is how you might go about an MCU that is not directly supported in the `qpc/examples/arm-cm`:
- choose example that most closely matches your particular MCU. In your case of the NXP MKE02Z64VLC2, which is based on the Cortex-M0+ core, the closest are the examples for NUCLEO-C031C6
- choose example that most closely matches your particular MCU. For instance, suppose that you're interested in NXP MKE02Z64VLC2, which is based on the Cortex-M0+ core, the closest are the examples for NUCLEO-C031C6 (also based on M0+)
- choose the kernel you'd like to use. For example, assuming that you like QK, you are interested in the qk subdirectory.
@ -76,9 +76,9 @@ examples\arm-cm\dpp_nucleo-c031c6
| | \---targetConfigs
| | Makefile // Makefile for GNU-ARM
| +---armclang // ARM/KEIL toolchain with Compiler 6 (ARM/CLANG)
| | dpp-qk.uvprojx // uVision project
| | dpp-qxk.uvprojx // uVision project
| \---iar // IAR EWARM
| dpp-qk.eww // IAR EW-ARM workspace
| dpp-qxk.eww // IAR EW-ARM workspace
|
```

View File

@ -10,7 +10,7 @@ This example demonstrates the [Dining Philosophers Problem (DPP) application](ht
</p>
> **NOTE**
This example can be used as a starting point for any other ARM Cortex-M MCU, including those based on differnt Cortex-M cores (M0/M0+/M3/M4/M7/M23/M33/M55/M85...) The most simplifying factor is that the QP-ports to Cortex-M don't need to change at all (the correct port is selected automatically based on the standard preprocessor macros provided by the compiler).
This example can be used as a starting point for any other ARM Cortex-M MCU, including those based on different Cortex-M cores (M0/M0+/M3/M4/M7/M23/M33/M55/M85...) The most simplifying factor is that the QP-ports to Cortex-M don't need to change at all (the correct port is selected automatically based on the standard preprocessor macros provided by the compiler).
<p align="center">
<img src="../qp_arm-cm.jpg"/>
@ -68,9 +68,9 @@ examples\arm-cm\dpp_nucleo-c031c6
| | \---targetConfigs
| | Makefile // Makefile for GNU-ARM
| +---armclang // ARM/KEIL toolchain with Compiler 6 (ARM/CLANG)
| | dpp-qk.uvprojx // uVision project
| | dpp-qxk.uvprojx // uVision project
| \---iar // IAR EWARM
| dpp-qk.eww // IAR EW-ARM workspace
| dpp-qxk.eww // IAR EW-ARM workspace
|
```