- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1、使用modus 建立Bluetooth_LE_Battery_Server 项目
2、CY_USING_PREBUILT_CM0P_IMAGE 这个宏定义具体含义是啥呀 ?
不胜感激
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
这个 mtb_shared/psoc6cm0p/release-vx.x.x/README.md 中解释。我把部分内容拷贝了出来,你可以读一下。
# PSoC 6 Cortex M0+ prebuilt images ### Overview Prebuilt application images are executed on the Cortex M0+ core of the PSoC 6 dual-core MCU. The images are provided as C arrays ready to be compiled as part of the Cortex M4 application. The Cortex M0+ application code is placed to internal flash by the Cortex M4 linker script. Note: Each application image has a variant based on the hardware die (e.g. psoc6_01, psoc6_02, psoc6_03, ...) it is supported on. An #ifdef at the top of each .c file automatically controls which version is used so there is no need to specify a particular image. ### Images * [COMPONENT_CM0P_SLEEP](./COMPONENT_CM0P_SLEEP/README.md) This image starts CM4 core at CY_CORTEX_M4_APPL_ADDR=0x10002000 and puts CM0+ core into a deep sleep mode. * [COMPONENT_CM0P_CRYPTO](./COMPONENT_CM0P_CRYPTO/README.md) This image starts crypto server on CM0+ core, starts CM4 core at CY_CORTEX_M4_APPL_ADDR=0x10008000 and puts CM0+ core into a deep sleep mode. * [COMPONENT_CM0P_BLESS](./COMPONENT_CM0P_BLESS/README.md) This image starts BLE controller on CM0+ core, starts CM4 core at CY_CORTEX_M4_APPL_ADDR=0x10020000 and puts CM0+ core into a deep sleep mode. * [COMPONENT_CM0P_SECURE](./COMPONENT_CM0P_SECURE/README.md) This image starts CM4 core at address corresponding to Secure Boot policy, sets required security settings, initializes and executes code of Protected Register Access driver, puts CM0+ core into a deep sleep mode.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
这个 mtb_shared/psoc6cm0p/release-vx.x.x/README.md 中解释。我把部分内容拷贝了出来,你可以读一下。
# PSoC 6 Cortex M0+ prebuilt images ### Overview Prebuilt application images are executed on the Cortex M0+ core of the PSoC 6 dual-core MCU. The images are provided as C arrays ready to be compiled as part of the Cortex M4 application. The Cortex M0+ application code is placed to internal flash by the Cortex M4 linker script. Note: Each application image has a variant based on the hardware die (e.g. psoc6_01, psoc6_02, psoc6_03, ...) it is supported on. An #ifdef at the top of each .c file automatically controls which version is used so there is no need to specify a particular image. ### Images * [COMPONENT_CM0P_SLEEP](./COMPONENT_CM0P_SLEEP/README.md) This image starts CM4 core at CY_CORTEX_M4_APPL_ADDR=0x10002000 and puts CM0+ core into a deep sleep mode. * [COMPONENT_CM0P_CRYPTO](./COMPONENT_CM0P_CRYPTO/README.md) This image starts crypto server on CM0+ core, starts CM4 core at CY_CORTEX_M4_APPL_ADDR=0x10008000 and puts CM0+ core into a deep sleep mode. * [COMPONENT_CM0P_BLESS](./COMPONENT_CM0P_BLESS/README.md) This image starts BLE controller on CM0+ core, starts CM4 core at CY_CORTEX_M4_APPL_ADDR=0x10020000 and puts CM0+ core into a deep sleep mode. * [COMPONENT_CM0P_SECURE](./COMPONENT_CM0P_SECURE/README.md) This image starts CM4 core at address corresponding to Secure Boot policy, sets required security settings, initializes and executes code of Protected Register Access driver, puts CM0+ core into a deep sleep mode.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
你好,按照您说的 ,没有找到更多信息
CY_USING_PREBUILT_CM0P_IMAG 也没有这个的更多信息
谢谢
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
“Prebuilt application images are executed on the Cortex M0+ core of the PSoC 6 dual-core MCU. The images are provided as C arrays ready to be compiled as part of the Cortex M4 application. The Cortex M0+ application code is placed to internal flash by the Cortex M4 linker script” 这不就是解释吗。 你想要什么样的解释。
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
👍👍
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
举个简单的例子,MTB中一个 BLE 的例子工程,默认不会创建成一个 dual-project 的工程(cm0p 和 cm4 各有一个独立的工程,各有一个main.c),而是一个 combined 的工程,只有一个 main.c,那如何让 BLESS 工作在 dul-cpu mode, 让 CM0P 和 CM4 和分别分担 BLE 的部分工作呢。现在给出的方法就是将 CM0P 执行的那部分 BLE 的功能的代码以 pre-image 的方式保存下来,然后在编译 CM4 核的 image 的时候,通过修改 makefile 将 cm0p bless 的那部分 image 与 cm4 的 image 连接起来,最后组成一个 HEX 文件。虽然是一个 HEX 文件,但其实包含了 cm0p image 和 cm4 image 两部分内容,这样两个核就可以一起工作,让 BLE 工作的 dual-cpu 模式.
一下是官方文件对 BLESS Pre-image 的原理和用法的解释
Pre-compiled BLESS Controller image executed on the Cortex M0+ core of the PSoC 6 dual-core MCU. The image is provided as C array ready to be compiled as part of the Cortex M4 application. The Cortex M0+ application code is placed to internal flash by the Cortex M4 linker script. This image is used only in BLE dual CPU mode. In this mode, the BLE functionality is split between CM0+ (controller) and CM4 (host). It uses IPC for communication between two CPU cores where both the controller and host run: ------------------------------- ------------------------------------ | CM0p (pre-built image) | | CM4 | | -------------------- ----- | | ----- ------------------------ | | | | | H | | IPC | | | | BLE Application | | | | BLE Controller |--| c | |<-------->| | | ------------------------ | | | (LL) | | I | |(commands,| | | | | | | | | ----- | events) | | | ----------------- | | | -------------------- | | | H | | BLE Profiles | | | ------------------------------- | | C | ----------------- | | | | | I | | | | ------------------------ | | | ------------------------- | | BLE HW | | | |--| BLE Host (GAP, L2CAP,| | ------------------------ | | | | SM, ATT) | | | | | ------------------------- | | ----- | ------------------------------------ BLESS Controller pre-built image executes the following steps: - configures BLESS interrupt - registers IPC-pipe callback for BLE middleware; the BLE middleware uses this callback to initialize and enable the BLE controller when BLE middleware operates in BLE dual CPU mode - starts CM4 core at CY_CORTEX_M4_APPL_ADDR=0x10020000 - goes to the while loop where processes BLE controller events and puts the CM0+ core into Deep Sleep.
### Usage To use this image, update the ram, flash, and FLASH_CM0P_SIZE values in the linker script for CM4: ``` Example for the GCC compiler: ... MEMORY { ... ram (rwx) : ORIGIN = 0x08003000, LENGTH = 0x044800 flash (rx) : ORIGIN = 0x10000000, LENGTH = 0x100000 ... } ... /* The size and start addresses of the Cortex-M0+ application image */ FLASH_CM0P_SIZE = 0x20000; ... ``` ``` Example for the IAR compiler: ... /* RAM */ define symbol __ICFEDIT_region_IRAM1_start__ = 0x08003000; define symbol __ICFEDIT_region_IRAM1_end__ = 0x08047800; /* Flash */ define symbol __ICFEDIT_region_IROM1_start__ = 0x10000000; define symbol __ICFEDIT_region_IROM1_end__ = 0x10100000; ... /* The size and start addresses of the Cortex-M0+ application image */ define symbol FLASH_CM0P_SIZE = 0x20000; ... ``` ``` Example for ARMC6 compiler: ... ; RAM #define RAM_START 0x08003000 #define RAM_SIZE 0x00044800 ; Flash #define FLASH_START 0x10000000 #define FLASH_SIZE 0x00100000 ... /* The size and start addresses of the Cortex-M0+ application image */ #define FLASH_CM0P_SIZE 0x20000 ... ``` To use this image in the custom BSP, adjust the BSP target makefile to add the COMPONENT_CM0P_BLESS directory to the list of components discovered by ModusToolbox build system: ``` COMPONENTS+=CM0P_BLESS ``` Also, to operate in Dual CPU mode, add the COMPONENT_BLESS_HOST_IPC directory to the list of the application level Makefile components: ``` COMPONENTS+=BLESS_HOST_IPC ``` Make sure there is a single CM0P_* component included in the COMPONENTS list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
非常感谢您的帮助,我受益良多,以后我慢点仔细看答案,谢谢