Multi Source Translation Content

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Multi Source Translation Content

讨论

排序依据:
PWM Capturing on IMXRT1062 Stopped when the prescaler is set with a value different from kPWM_Presca Hello, I've encountered an issue when configuring the any of the four PWM peripherals clock perscaler with values other than kPWM_Prescale_Divide_1 , the counter of the selected PWM peripheral doesn't work at all. I'm using the imxrt1062 processor and MCUXpresso IDE v11.9.1 I hope, you can support me as soon as possible. And, here is a snippet of my code where I configure and initialize the pwm peripherals. static void pwm_init(void) { pwm_config_t pwmConfig; pwm_input_capture_param_t captureConfig; pwm_fault_param_t faultConfig; /* Read the PWM default configuration */ PWM_GetDefaultConfig(&pwmConfig); pwmConfig.clockSource = kPWM_BusClock; pwmConfig.prescale = kPWM_Prescale_Divide_2; pwmConfig.pairOperation = kPWM_Independent; pwmConfig.initializationControl = kPWM_Initialize_LocalSync; pwmConfig.reloadLogic = kPWM_ReloadImmediate; pwmConfig.reloadSelect = kPWM_LocalReload; pwmConfig.reloadFrequency = kPWM_LoadEveryOportunity; pwmConfig.forceTrigger = kPWM_Force_LocalSync; pwmConfig.enableDebugMode = true; PWM_Init(PWM1_BASEADDR, kPWM_Module_3, &pwmConfig); PWM_Init(PWM2_BASEADDR, kPWM_Module_3, &pwmConfig); PWM_Init(PWM3_BASEADDR, kPWM_Module_1, &pwmConfig); PWM_Init(PWM4_BASEADDR, kPWM_Module_1, &pwmConfig); // fault configuration PWM_FaultDefaultConfig(&faultConfig); /* Sets up the PWM fault protection */ PWM_SetupFaults(PWM1_BASEADDR, kPWM_Fault_0, &faultConfig); PWM_SetupFaults(PWM1_BASEADDR, kPWM_Fault_1, &faultConfig); PWM_SetupFaults(PWM1_BASEADDR, kPWM_Fault_2, &faultConfig); PWM_SetupFaults(PWM1_BASEADDR, kPWM_Fault_3, &faultConfig); /* Set PWM fault disable mapping for submodule 0/1/2 */ PWM_SetupFaultDisableMap(PWM1_BASEADDR, kPWM_Module_0, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM1_BASEADDR, kPWM_Module_1, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM1_BASEADDR, kPWM_Module_2, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM1_BASEADDR, kPWM_Module_3, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); /* Sets up the PWM fault protection */ PWM_SetupFaults(PWM2_BASEADDR, kPWM_Fault_0, &faultConfig); PWM_SetupFaults(PWM2_BASEADDR, kPWM_Fault_1, &faultConfig); PWM_SetupFaults(PWM2_BASEADDR, kPWM_Fault_2, &faultConfig); PWM_SetupFaults(PWM2_BASEADDR, kPWM_Fault_3, &faultConfig); /* Set PWM fault disable mapping for submodule 0/1/2 */ PWM_SetupFaultDisableMap(PWM2_BASEADDR, kPWM_Module_0, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM2_BASEADDR, kPWM_Module_1, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM2_BASEADDR, kPWM_Module_2, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM2_BASEADDR, kPWM_Module_3, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); /* Sets up the PWM fault protection */ PWM_SetupFaults(PWM3_BASEADDR, kPWM_Fault_0, &faultConfig); PWM_SetupFaults(PWM3_BASEADDR, kPWM_Fault_1, &faultConfig); PWM_SetupFaults(PWM3_BASEADDR, kPWM_Fault_2, &faultConfig); PWM_SetupFaults(PWM3_BASEADDR, kPWM_Fault_3, &faultConfig); /* Set PWM fault disable mapping for submodule 0/1/2 */ PWM_SetupFaultDisableMap(PWM3_BASEADDR, kPWM_Module_0, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM3_BASEADDR, kPWM_Module_1, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM3_BASEADDR, kPWM_Module_2, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM3_BASEADDR, kPWM_Module_3, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); /* Sets up the PWM fault protection */ PWM_SetupFaults(PWM4_BASEADDR, kPWM_Fault_0, &faultConfig); PWM_SetupFaults(PWM4_BASEADDR, kPWM_Fault_1, &faultConfig); PWM_SetupFaults(PWM4_BASEADDR, kPWM_Fault_2, &faultConfig); PWM_SetupFaults(PWM4_BASEADDR, kPWM_Fault_3, &faultConfig); /* Set PWM fault disable mapping for submodule 0/1/2 */ PWM_SetupFaultDisableMap(PWM4_BASEADDR, kPWM_Module_0, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM4_BASEADDR, kPWM_Module_1, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM4_BASEADDR, kPWM_Module_2, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); PWM_SetupFaultDisableMap(PWM4_BASEADDR, kPWM_Module_3, kPWM_PwmA, kPWM_faultchannel_0, kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3); /* Configure the capture input of the PWM for one shot polling */ captureConfig.captureInputSel = true; captureConfig.edge0 = kPWM_RiseAndFallEdge; captureConfig.edge1 = kPWM_Disable; captureConfig.enableOneShotCapture = false; captureConfig.edgeCompareValue = 1; PWM_SetupInputCapture(PWM1_BASEADDR, kPWM_Module_3, kPWM_PwmA, &captureConfig); PWM_SetupInputCapture(PWM2_BASEADDR, kPWM_Module_3, kPWM_PwmA, &captureConfig); PWM_SetupInputCapture(PWM3_BASEADDR, kPWM_Module_1, kPWM_PwmA, &captureConfig); PWM_SetupInputCapture(PWM4_BASEADDR, kPWM_Module_1, kPWM_PwmA, &captureConfig); PWM_SetPwmLdok(PWM1_BASEADDR, kPWM_Control_Module_3, true); PWM_SetPwmLdok(PWM2_BASEADDR, kPWM_Control_Module_3, true); PWM_SetPwmLdok(PWM3_BASEADDR, kPWM_Control_Module_1, true); PWM_SetPwmLdok(PWM4_BASEADDR, kPWM_Control_Module_1, true); PWM_StartTimer(PWM1_BASEADDR, kPWM_Control_Module_3); PWM_StartTimer(PWM2_BASEADDR, kPWM_Control_Module_3); PWM_StartTimer(PWM3_BASEADDR, kPWM_Control_Module_1); PWM_StartTimer(PWM4_BASEADDR, kPWM_Control_Module_1); } Re: PWM Capturing on IMXRT1062 Stopped when the prescaler is set with a value different from kPWM_Pr Hello, there are several messages claiming that prescaler set to any value does not work, counter does not increase. I have the same issue on mcPWM in mcf54415 Would be nice to know if anyone could have prescaler working, if there is a sequence that the datasheet is not mentioning. Or if it cannot work at all.
查看全文
MBDT_S32E2_安装问题 各位同事,我目前无法安装 S32Z/E 的基于模型的设计工具箱,因此我联系你们寻求帮助。我的系统上安装了 MATLAB 2024b(甚至尝试过 MATLAB 2026a),并且我还有一个有效的 NXP 帐户。我下载了 NXP_Support_Package_S32ZE_1.4.0_D2512.mltbx 文件,但是当我尝试按照快速入门指南进行安装时,该过程一直卡住,无法完成或继续进行。我非常感谢您能帮忙找出导致此问题的原因,并指导我如何才能成功完成安装。如果有什么日志或其他细节需要我提供以协助排查问题,请告诉我。感谢您提前给予的支持。 我按照用户指南中的两种方法都尝试过了,但都没有成功。 在线方式: 根据用户指南第 1.2.2 节,我下载了 NXP S32Z/E 系列基于模型的设计工具箱(NXP S32Z/E 系列基于模型的设计工具箱)。链接: https://uk.mathworks.com/matlabcentral/fileexchange/134202-nxp_support_package_s32ze )但是在步骤 1.2.2(f) 中,按照步骤操作后,文件夹中不存在“NXP_Support_Package_S32ZE.m”。 离线方法: 按照第 1.2.1 节所述,工具箱下载页面重定向到我的个人资料页面,并且网站上“基于汽车软件模型的设计工具箱”下没有 S32E2 工具箱。 设计:产品信息:汽车软件 - 基于模型的设计工具箱 我想知道我的步骤是否正确。 NXP_Support_Package_S32ZE 和 Toolboxes 是两个不同的软件包吗? 谢谢! 拉维 Re: MBDT_S32E2_Installation_Issue 你好 vladmitroi 非常感谢您的支持。问题已解决。 顺祝商祺! 拉维 Re: MBDT_S32E2_Installation_Issue 你好, 感谢您使用我们的产品。这个问题与所有 S32ZE 套件的软件包访问权限有关。您应该首先访问包含所有S32ZE软件的完整软件包,然后工具箱才会显示出来。 您可以按照本文档中的步骤从 nxp.com 获取 mltbx。安装方法很简单,只需拖放 .mltbx 文件即可。导入MATLAB。需要注意的是,目前支持的最新版本是 2024b。 文档中 1.3.0虽然提到了版本,但对于最新版本 1.4.0,步骤也是一样的。(应该在版本列表中可见)
查看全文
S32N55: How to build a blob image for fast wake-up boot. Hello Team, As we know, the S32N55 supports Fast Wake-up Boot. I tried building a blob image using the same format as Full Wake-up Boot, but the boot process failed. Could you please guide me on how to correctly build a blob image for Fast Wake-up Boot? Thank you! Tangsheng_Zhou_0-1766369489644.pngTangsheng_Zhou_0-1766369489644.pngTangsheng_Zhou_0-1766369489644.png Best regards, Tangsheng. FSS_FW Priority: MEDIUM Re: S32N55: How to build a blob image for fast wake-up boot. Hello @Tangsheng_Zhou, The team has picked up the case and will provide an answer as soon as possible.  Best regards, Radu  Re: S32N55: How to build a blob image for fast wake-up boot. Hello @RaduBraga  I noticed that this ticket has been closed. Is there any update on the progress?   Best regards, Tangsheng. Re: S32N55: How to build a blob image for fast wake-up boot. Hello @Tangsheng_Zhou , I took over the case and will provide a response as soon as possible.   Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hello @Tangsheng_Zhou , If you are supporting a Direct Customer, please provide: BSSM Contract: Yes / No Customer Company*: Project Name*: Customer Contact Point* (Name & Email): Software & Hardware Information: SW Package Info*: HW* (Board/Chipset/Platform): SW Version*: *required I am still working with the development team for this case Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hello @Tangsheng_Zhou , Thank you for these details, I am working on this case and will provide an answer as soon as possible! Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hello @PaulB0bes  This case is not tied to any specific customer or project. However, I believe customers may encounter similar questions in the future, which is why I raised this request.   Best regards, Tangsheng. Re: S32N55: How to build a blob image for fast wake-up boot. Hello @PaulB0bes  Below are the detailed steps for testing.   1. built a small FSS image within AOSRAM memory region(reserved the IVT header), which only have a while loop in main.c Tangsheng_Zhou_0-1784553297963.pngTangsheng_Zhou_0-1784553297963.pngTangsheng_Zhou_0-1784553297963.png 2. build the FSS Firmware image,  do I need to fill the FRB Threshold Reg? If so, how to fill it or any special thing need to be considered. Tangsheng_Zhou_1-1784553422329.pngTangsheng_Zhou_1-1784553422329.pngTangsheng_Zhou_1-1784553422329.png 3. built the IVT blob image in IVT tool, with start address from 0x24800000 4. write the IVT blob image into flash at 0xD00000. 5. before the system enter sleep, copy the IVT blob image into AOSRAM, and configure the WKPU mode for FSS_WKUP0 as fast wake-up mode. Tangsheng_Zhou_2-1784553712231.pngTangsheng_Zhou_2-1784553712231.pngTangsheng_Zhou_2-1784553712231.png Tangsheng_Zhou_3-1784553730808.pngTangsheng_Zhou_3-1784553730808.pngTangsheng_Zhou_3-1784553730808.png 5. wakeup the system image via FSS_WAKUP0. The FSS could not reach the while(1) loop. It appears that a reset event was triggered during the wake-up process instead of a fast wake-up.   Thanks for your support!   Best regards, Tangsheng. Re: S32N55: How to build a blob image for fast wake-up boot. Hello @Tangsheng_Zhou , It would help if you could share the exact steps you followed when you tried to build the blob image. I think it would be easier for us to identify the issue that way.   Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hi @Tangsheng_Zhou , FRB is for TCM memory (ITCM +DTCM). In theory we have 2 cases 1: FAST wakeup Boot      for fast wakeup FRB is not needed, due to the fact that image boots from AON SRAM Memory. 2: FULL wakeup Boot      Can you tell me if you want to boot to ITCM? if yes FRB threshold 0 should be provided in FSS Image header, the address is 12 bit masked and address will be calculated as multiple of 8kb for FRB .       Hope this helps a little. Also could you provide me the IVT blob? Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hello @PaulB0bes  No, I just want to run the F-Core in AO-SRAM.  main_app1.bin is the FSS firmware image. How to fill these two field, should it be started from AO_SRAM address, 0x24800000? the start pointer and entry pointer of my image is 0x24800240. Tangsheng_Zhou_0-1784682563629.pngTangsheng_Zhou_0-1784682563629.pngTangsheng_Zhou_0-1784682563629.png main_blob1.bin is the blob image that contain IVT header. Thanks! Best regards, Tangsheng. Re: S32N55: How to build a blob image for fast wake-up boot. Hello @PaulB0bes  The complete IVT image rather than the FSS Firmware was copied to AO_SRAM before entering sleep mode to test the fast wake-up functionality.   Thanks! Best regards, Tangsheng Re: S32N55: How to build a blob image for fast wake-up boot. Hello @PaulB0bes  The whole IVT blob image was copied to start of AO_SRAM, including IVT header and FSS FW header, and FSS FW binary. Thanks! Best regards, Tangsheng. Re: S32N55: How to build a blob image for fast wake-up boot. Hi @Tangsheng_Zhou , Just to make sure I understand the flow, are you copying the complete IVT blob image to the beginning of AO_SRAM before sleep, or are you copying only the FSS firmware image for Fast Wake-up Boot? Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hi @Tangsheng_Zhou , Could you please confirm that the Fast Wake-up Boot is completing successfully? If the wake-up process is confirmed to be working as expected, this may indicate an issue with the image.  I would like to narrow down the possible causes step by step   Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hello @PaulB0bes  I think the WKPU configuration is correct. As I understand it, the main difference between Full Wake-up and Fast Wake-up is the WBMSR configuration. Is that right? Are there any other settings or factors that need to be considered? Also, could you please share the correct steps or a fast wake-up blob image verified by you or your team? Thanks for your support! Best regards, Tangsheng. Re: S32N55: How to build a blob image for fast wake-up boot. Hi @Tangsheng_Zhou , The team is currently overloaded with releases. I’ll apply a bit of pressure on my side, do some investigation and get back to you with an answer as soon as possible.   Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hi @Tangsheng_Zhou , WBMSR is one of the key differences between Full Wake-up and Fast Wake-up Boot. However, it is not the only factor. For Fast Wake-up Boot, BootROM expects a valid image (IVT + FSS FW, with Wakeup DCD if required) to be available in AON SRAM before entering sleep. In addition to WBMSR, the wake-up source configuration, AON SRAM retention and valid IVT/FSS headers should also be verified. The expected Fast Wake-up flow is:   1. Generate the IVT blob image containing IVT + FSS FW. 2. Add Wakeup DCD if required. 3. Copy the blob image to the beginning of AON SRAM. 4. Configure the system for Fast Wake-up mode. 5. Enter sleep and trigger the wake-up source Regarding a verified Fast Wake-up blob image, I am checking internally and will update you if a validated reference image is available   Hope this helps a little.   Best regards, Paul Re: S32N55: How to build a blob image for fast wake-up boot. Hello @PaulB0bes  Thanks for your reply. I tested the fast wake-up function following the steps you provided, but the issue is still present. Could you please confirm whether you have tested it successfully on your side?   Thanks!  Best regards, Tangsheng. Re: S32N55: How to build a blob image for fast wake-up boot. Hi @Tangsheng_Zhou , If you believe the provided answer is appropriate and you have no further questions regarding the ticket, please mark the answer as "Accept as Solution". For future cases please use NXP JIRA: Jira Project  Additionally, if we do not receive a response within the next 7 days, we will close the case. Best regards,  Paul  Re: S32N55: How to build a blob image for fast wake-up boot. Hi @Tangsheng_Zhou , I went through the main blob image you sent once again, and I don’t really see anything wrong with it. The image itself also appears to be correct. The steps I provided were tested beforehand. I will discuss this with the team and get back to you as soon as possible with another solution for the reset issue.  Best regards, Paul
查看全文
DTM software to work with R&S CMW500 Hi all,  I would like to work on KW45B41Z-EVK board with R&S CMW500 equipment for BLE testing directly but I found the following problem on it. 1) R&S CMW500 can recognize the USB visual COM driver for the kit but I cannot find the driver file for the MCU-Link and my equipment seems to be windows based system so I need how to download windows driver for the kit. 2) For the software running in EVK, I load the example code of hci_bb_bm code on it and it can run Generic FSK connectivity test demo software thru TeraTerm and try to connect this COM port into CMW500 and the initial check on the DTM connection with equipment is passed but EVK board seems to be not able to response to read test command from equipment and then making any BLE RF PHY link testing.   Therefore, I don't sure any specific software from NXP to be fit with DTM interface with equipment directly or any advise for using hci_bb_bm software to run with DTM with standard BLE tester equipment included R&S CMW500. Kinetis K Series MCUs Re: DTM software to work with R&S CMW500 Hello, hope you are doing well!   This application note provides the RF evaluation test result of the KW45B41Z-EVK for BLE applications using the connectivity_test and HCI_bb application examples: AN13228 KW45B41Z-EVK RF System Evaluation Report for Bluetooth Low Energy Applications Also, maybe these posts could be helpful:  How to use the HCI_bb on Kinetis family products and get access to the DTM mode  This article is presenting two parts: How to flash the HCI_bb binary into the Kinetis product. Perform RF measurement using the R&S CMW270 BLE HCI Application to set transmitter/receiver test commands This article provides the steps to show how user could send serial commands to the device. Bluetooth LE HCI Black Box Quick Start Guide This article describes a simple process for enabling the user controls the radio through serial commands. Best regards, Sofia. Re: DTM software to work with R&S CMW500 You’ll need the MCU‑Link Windows driver from NXP’s site (it’s bundled with MCUXpresso IDE/Drivers package), as the CMW500 only recognizes standard COM ports. For BLE DTM testing, the hci_bb_bm demo isn’t fully compliant with the DTM spec—NXP provides dedicated DTM firmware examples for KW45 boards that respond correctly to tester commands. Flashing that DTM example instead of hci_bb_bm should allow proper RF PHY link testing with the CMW500.  
查看全文
使用 opencv_extra 进行 bitbake 下载时出现问题 大家好,论坛! 我尝试下载 LF-6.6.52_2.2.x 版本 imx-image-full 所需的软件包,但在下载 OpenCV extra 包时遇到了问题:要么耗时过长,要么下载失败。 khang at GL72-6QF in /devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp $ bitbake imx-image-full --runall=fetch Loading cache: 100% |#######################################################################################################################################################################| Time: 0:00:02 Loaded 5730 entries from dependency cache. Parsing recipes: 100% |#####################################################################################################################################################################| Time: 0:00:00 Parsing of 3654 .bb files complete (3653 cached, 1 parsed). 5731 targets, 377 skipped, 3 masked, 0 errors. NOTE: Resolving any missing task queue dependencies Build Configuration: BB_VERSION = "2.8.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "universal" TARGET_SYS = "aarch64-poky-linux" MACHINE = "imx8mpevk" DISTRO = "fsl-imx-xwayland" DISTRO_VERSION = "6.6-scarthgap" TUNE_FEATURES = "aarch64 armv8a crc crypto" TARGET_FPU = "" meta meta-poky meta-oe meta-multimedia meta-python meta-freescale meta-freescale-3rdparty meta-freescale-distro meta-imx-bsp meta-imx-sdk meta-imx-ml meta-imx-v2x meta-nxp-demo-experience meta-nxp-matter-baseline meta-nxp-openthread meta-arm meta-arm-toolchain meta-clang meta-gnome meta-networking meta-filesystems meta-qt6 meta-parsec meta-tpm meta-virtualization = " : " Sstate summary: Wanted 0 Local 0 Mirrors 0 Missed 0 Current 887 (0% match, 100% complete)################################################################################## | ETA: 0:00:00 Initialising tasks: 100% |##################################################################################################################################################################| Time: 0:00:05 NOTE: Executing Tasks Setscene tasks: 887 of 887 Setscene tasks: 887 of 887 WARNING: opencv-4.10.0.imx-r0 do_fetch: Failed to fetch URL git://github.com/opencv/opencv_extra.git;destsuffix=extra;name=extra;branch=4.x;protocol=https, attempting MIRRORS if available ERROR: opencv-4.10.0.imx-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"; export SSH_AUTH_SOCK="/run/user/1000/keyring/ssh"; export PATH="/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/sysroots-uninative/x86_64-linux/usr/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/bin/python3-native:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/poky/scripts:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/bin/aarch64-poky-linux:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot/usr/bin/crossscripts:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/sbin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/sbin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/poky/bitbake/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/hosttools"; export HOME="/home/khang"; LANG=C git -c gc.autoDetach=false -c core.pager=cat -c safe.bareRepository=all clone --bare --mirror https://github.com/opencv/opencv_extra.git /home/khang/Workspace/Ref/Platforms/NXP/iMX/NXP/yocto_dl/v6.6/git2/github.com.opencv.opencv_extra.git --progress failed with exit code 128, see logfile for output ERROR: opencv-4.10.0.imx-r0 do_fetch: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any source.', 'git://github.com/opencv/opencv_extra.git;destsuffix=extra;name=extra;branch=4.x;protocol=https') ERROR: Logfile of failure stored in: /devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/temp/log.do_fetch.91350 ERROR: Task (/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/meta-imx/meta-imx-bsp/recipes-support/opencv/opencv_4.10.0.imx.bb:do_fetch) failed with exit code '1' NOTE: Tasks Summary: Attempted 1774 tasks of which 1773 didn't need to be rerun and 1 failed. Summary: 1 task failed: /devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/meta-imx/meta-imx-bsp/recipes-support/opencv/opencv_4.10.0.imx.bb:do_fetch Summary: There was 1 WARNING message. Summary: There were 2 ERROR messages, returning a non-zero exit code. 请大家多多支持! 谢谢,并致以最诚挚的问候! Khang i.MX 8M | i.MX 8M Mini | i.MX 8M Nano Re: Issue bitbake download with opencv_extra 我这边进行了验证,运行以下命令后,大约花了 1 个小时才完成 git 源代码下载。 $ bitbake opencv -c patch -f 您可以尝试以下变通方法。 请进入 downloads/git2 文件夹执行以下操作: git clone --mirror https://github.com/opencv/opencv_extra.git github.com.opencv.opencv_extra.git   touch github.com.opencv.opencv_extra.git.done Re: Issue bitbake download with opencv_extra 嗨@yipingwang , 看起来像是网络/位置问题。我尝试通过 VPN 连接,完全成功了。 顺祝商祺! K.
查看全文
RT1052の動作モードの問題 NXPテクニカルサポート様 こんにちは! Zhengdian AtomのRT1052開発ボード用SDKには、XIP実行モードとSDRAM実行モードの2種類のサンプルプログラムが含まれています。SDRAM実行モードはデバッグモードでのみ実行可能で、電源が切断されたり、デバッガが切断されたり、システムが再起動されたりすると、プログラムは実行されません。Zhengdian AtomのXIP実行モードプログラムは教育目的のものであり、公式のNXP SDKほど機能が充実していない部分もあります。 質問があります。「C:\Users\admin1\Desktop\SDK_25_06_00_EVKB-IMXRT1050\boards\evkbimxrt1050\lvgl_examples\lvgl_demo_widgets\mdk\flexspi_nor_sdram_releasep」にあるルーチンは、XIPモードで実行されていますか、それともSDRAMモードで実行されていますか?コンパイルされたMAPファイルを確認したところ、実行領域はQSPI FLASHとSDRAMの両方にあります。そして、LVGLファイルはQSPI FLASHとSDRAMの両方で実行されます。したがって、lv_conf.hファイル内の「#define LV_MEM_SIZE (500 * 1024U)」で定義されているメモリ空間は、SDRAMにありますか、それとも内部RAMにありますか? Re: RT1052的运行模式问题 わかりました。ありがとうございます! Re: RT1052的运行模式问题 こんにちは、 @FromCH0 さん。 NXPテクニカルサポートチームにご連絡いただきありがとうございます! プロジェクト `flexspi_nor_sdram_release` は、純粋な SDRAM デバッグモードではなく、NXP SDK で定義されているハイブリッドモード(FlexSPI NOR フラッシュ XIP + SDRAM データ)で動作します。NXP SDK 25.06.00 の公式ドキュメントには、このターゲットのプログラムテキストは FlexSPI NOR フラッシュに格納され、XIP を介して直接実行できる一方、読み書き可能なデータは外部 SDRAM に格納されることが明記されています。 詳細については、以下のリンクを参照してください。https: //docs.mcuxpresso.nxp.com/mcuxsdk/25.06.00/html/boards/RT/evkbimxrt1050/gettingStarted/topics/build_an_example_application_003.html したがって、MAPファイルにQSPI/FlexSPIフラッシュとSDRAMの実行領域の両方が表示されるのは正常です。通常、LVGL関数コードと読み取り専用定数はフラッシュに格納され、LVGLランタイム変数、動的メモリプール、および表示バッファはSDRAMに格納されます。ソースファイルは、フラッシュにコードセグメントを、SDRAMにデータセグメントを同時に生成することもあり、その実行場所はソースファイル全体だけでは判断できません。 LV_MEM_SIZE (500 * 1024U) は、LVGL の内部動的メモリ プールのサイズを定義するだけで、アドレスを直接指定するものではありません。プロジェクトが LVGL の組み込みメモリマネージャを使用し、カスタム アロケータを有効にせず、固定メモリ プール アドレスを設定していない場合、flexspi_nor_sdram_release リンカ構成では、この約 500 KiB のメモリ プールは通常、オンチップ RAM ではなく、外部 SDRAM に RW/ZI データとして配置されます。 生成されたMAPファイル内でwork_mem、lv_mem、または対応するLVGLメモリプールシンボルを検索して確認できます。アドレス0x800xxxxxは、外部SDRAMに配置されていることを示しています。 よろしくお願いします、 ギャビン
查看全文
R&S CMW500と連携するDTMソフトウェア こんにちは、みんな、 KW45B41Z-EVKボードとR&S CMW500機器を使用してBLEテストを直接行いたいのですが、以下の問題が見つかりました。 1) R&S CMW500はキット用のUSBビジュアルCOMドライバを認識できますが、MCU-Linkのドライバファイルが見つかりません。また、私の機器はWindowsベースのシステムのようですので、キット用のWindowsドライバをダウンロードする方法が必要です。 2) EVKで実行中のソフトウェアについては、hci_bb_bmコードのサンプルコードをロードし、TeraTermを介して汎用FSK接続テストデモソフトウェアを実行して、このCOMポートをCMW500に接続しようとしましたが、機器とのDTM接続の初期チェックはパスしましたが、EVKボードは機器からの読み取りテストコマンドに応答できず、BLE RF PHYリンクテストを実行できません。 したがって、NXPからDTMインターフェースと機器を直接接続するための特定のソフトウェアがあるかどうか、あるいはR&S CMW500を含む標準的なBLEテスター機器でDTMを実行するためにhci_bb_bmソフトウェアを使用する方法についてのアドバイスがあるかどうかはわかりません。 Kinetis KシリーズMCU Re: DTM software to work with R&S CMW500 こんにちは、お元気でお過ごしでしょうか!   このアプリケーションノートでは、connectivity_testおよびHCI_bbアプリケーション例を使用したBLEアプリケーション向けKW45B41Z-EVKのRF評価テスト結果を提供します。AN13228 Bluetooth Low Energyアプリケーション向けKW45B41Z-EVK RFシステム評価レポート また、以下の記事も参考になるかもしれません。 Kinetisファミリー製品でHCI_bbを使用する方法とDTMモードへのアクセス方法 この記事は2つの部分から構成されています。 HCI_bbバイナリをKinetis製品に書き込む方法。 R&S CMW270を使用してRF測定を実施する BLE HCIアプリケーションを使用して、トランスミッタ/レシーバのテストコマンドを設定します。 この記事では、ユーザーがデバイスにシリアルコマンドを送信する方法の手順を説明します。 Bluetooth LE HCI ブラックボックス クイックスタートガイド この記事では、ユーザーがシリアルコマンドを通じて無線機を制御できるようにする簡単な手順について説明します。 よろしくお願いします、 ソフィア。 Re: DTM software to work with R&S CMW500 CMW500は標準のCOMポートしか認識していないため、NXPのサイトにあるMCU-LinkのWindowsドライバー(MCUXpresso IDE/Driversパッケージにバンドルされています)が必要です。BLE DTMテストの場合、hci_bb_bmデモはDTM仕様に完全に準拠していません。NXPは、テスターコマンドに正しく応答するKW45ボード専用のDTMファームウェアサンプルを提供しています。DTMの例をhci_bb_bmの代わりにフラッシュすれば、CMW500で適切なRF PHYリンクテストが可能になるはずです。  
查看全文
与 R&S CMW500 一起使用的 DTM 软件 大家好 我想在 KW45B41Z-EVK 板上使用 R & S CMW500 设备直接进行 BLE 测试,但我发现上面有以下问题。 1) R&S CMW500 可以识别套件的 USB 可视 COM 驱动程序,但我找不到 MCU-Link 的驱动程序文件,而我的设备似乎是基于 Windows 的系统,因此我需要如何下载套件的 Windows 驱动程序。 2) 对于在 EVK 中运行的软件,我在上面加载 hci_bb_bm 代码的示例代码,它可以通过 TeraTerm 运行通用 FSK 连接测试演示软件,尝试将这个 COM 端口连接到 CMW500,DTM 与设备连接的初步检查已通过,但是 EVK 板似乎无法响应从设备读取测试命令然后进行任何 BLE 射频物理链路测试。 因此,我不确定恩智浦是否有任何特定软件可直接与设备的 DTM 接口相匹配,也不确定是否有任何建议可将 hci_bb_bm 软件与 DTM 一起与包括 R&S CMW500 在内的标准 BLE 测试仪设备一起运行。 Kinetis K系列MCU Re: DTM software to work with R&S CMW500 你好,希望你一切都好!   本应用说明使用 connectivity_test 和 HCi_BB 应用示例提供 BLE 应用的 KW45B41Z-EVK 射频评估测试结果:低功耗蓝牙应用的 AN13228 KW45B41Z-EVK 射频系统评估报告 此外,以下这些帖子或许对您有所帮助:  如何在 Kinetis 系列产品上使用 HCi_BB 并获得 DTM 模式 本文介绍两部分: 如何将 HCi_BB 二进制文件闪存到 Kinetis 产品中。 使用 R&S CMW270 进行射频测量 用于@@ 设置发射器/接收器测试命令的 BLE HCI 应用程序 本文提供了演示用户如何向设备发送串行命令的步骤。 蓝牙低功耗 HCI 黑匣子快速入门指南 本文介绍了一种简单的操作流程,用于让用户通过串行命令控制无线电模块。 此致, Sofia。 Re: DTM software to work with R&S CMW500 您需要从 NXP 网站下载 MCU-Link Windows 驱动程序(它与 MCUXpresso IDE/驱动程序包捆绑在一起),因为 CMW500 只识别标准 COM 端口。对于 BLE DTM 测试,hci_bb_bm 演示并不完全符合 DTM 规范——NXP 为 KW45 板提供了专用的 DTM 固件示例,可以正确响应测试仪命令。刷入该 DTM 示例而不是 hci_bb_bm 应该可以对 CMW500 进行正确的 RF PHY 链路测试。  
查看全文
Issue bitbake download with opencv_extra Hi Forum, I was attempting to download necessary packages for the imx-image-full of LF-6.6.52_2.2.x and was struggling with the OpenCV extra package : either it took too long time or failed khang at GL72-6QF in /devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp $ bitbake imx-image-full --runall=fetch Loading cache: 100% |#######################################################################################################################################################################| Time: 0:00:02 Loaded 5730 entries from dependency cache. Parsing recipes: 100% |#####################################################################################################################################################################| Time: 0:00:00 Parsing of 3654 .bb files complete (3653 cached, 1 parsed). 5731 targets, 377 skipped, 3 masked, 0 errors. NOTE: Resolving any missing task queue dependencies Build Configuration: BB_VERSION = "2.8.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "universal" TARGET_SYS = "aarch64-poky-linux" MACHINE = "imx8mpevk" DISTRO = "fsl-imx-xwayland" DISTRO_VERSION = "6.6-scarthgap" TUNE_FEATURES = "aarch64 armv8a crc crypto" TARGET_FPU = "" meta meta-poky meta-oe meta-multimedia meta-python meta-freescale meta-freescale-3rdparty meta-freescale-distro meta-imx-bsp meta-imx-sdk meta-imx-ml meta-imx-v2x meta-nxp-demo-experience meta-nxp-matter-baseline meta-nxp-openthread meta-arm meta-arm-toolchain meta-clang meta-gnome meta-networking meta-filesystems meta-qt6 meta-parsec meta-tpm meta-virtualization = " : " Sstate summary: Wanted 0 Local 0 Mirrors 0 Missed 0 Current 887 (0% match, 100% complete)################################################################################## | ETA: 0:00:00 Initialising tasks: 100% |##################################################################################################################################################################| Time: 0:00:05 NOTE: Executing Tasks Setscene tasks: 887 of 887 Setscene tasks: 887 of 887 WARNING: opencv-4.10.0.imx-r0 do_fetch: Failed to fetch URL git://github.com/opencv/opencv_extra.git;destsuffix=extra;name=extra;branch=4.x;protocol=https, attempting MIRRORS if available ERROR: opencv-4.10.0.imx-r0 do_fetch: Fetcher failure: Fetch command export PSEUDO_DISABLED=1; export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"; export SSH_AUTH_SOCK="/run/user/1000/keyring/ssh"; export PATH="/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/sysroots-uninative/x86_64-linux/usr/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/bin/python3-native:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/poky/scripts:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/bin/aarch64-poky-linux:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot/usr/bin/crossscripts:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/sbin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/usr/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/sbin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/recipe-sysroot-native/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/poky/bitbake/bin:/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/hosttools"; export HOME="/home/khang"; LANG=C git -c gc.autoDetach=false -c core.pager=cat -c safe.bareRepository=all clone --bare --mirror https://github.com/opencv/opencv_extra.git /home/khang/Workspace/Ref/Platforms/NXP/iMX/NXP/yocto_dl/v6.6/git2/github.com.opencv.opencv_extra.git --progress failed with exit code 128, see logfile for output ERROR: opencv-4.10.0.imx-r0 do_fetch: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any source.', 'git://github.com/opencv/opencv_extra.git;destsuffix=extra;name=extra;branch=4.x;protocol=https') ERROR: Logfile of failure stored in: /devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/build-xwayland-8mp/tmp/work/armv8a-mx8mp-poky-linux/opencv/4.10.0.imx/temp/log.do_fetch.91350 ERROR: Task (/devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/meta-imx/meta-imx-bsp/recipes-support/opencv/opencv_4.10.0.imx.bb:do_fetch) failed with exit code '1' NOTE: Tasks Summary: Attempted 1774 tasks of which 1773 didn't need to be rerun and 1 failed. Summary: 1 task failed: /devel/NXP/SW/imx-yocto-bsp-6_6_52-2_2_2/sources/meta-imx/meta-imx-bsp/recipes-support/opencv/opencv_4.10.0.imx.bb:do_fetch Summary: There was 1 WARNING message. Summary: There were 2 ERROR messages, returning a non-zero exit code. Please help to support! Thanks and best regards, Khang i.MX 8M | i.MX 8M Mini | i.MX 8M Nano Re: Issue bitbake download with opencv_extra I did the verification on my side, it took about 1 hour to complete the git source download after run the following command. $ bitbake opencv -c patch -f You could use the following workaround. Go to folder downloads/git2 to do the following operations: git clone --mirror https://github.com/opencv/opencv_extra.git  github.com.opencv.opencv_extra.git   touch github.com.opencv.opencv_extra.git.done Re: Issue bitbake download with opencv_extra Hi @yipingwang, It look like it was a problem of network / location. I tried via VPN and it worked completely. Best regards, K. 
查看全文
RT1052 operating mode issue Dear NXP Technical Support: Hello! The SDK for Zhengdian Atom's RT1052 development board includes two types of example programs: XIP running mode and SDRAM running mode. The SDRAM running mode can only run in debug mode; if power is lost, the debugger is disconnected, and the system is restarted, the program will not run. The XIP running mode programs from Zhengdian Atom are for educational purposes and are certainly not as complete as the official NXP SDK in some aspects. I have a question: Is the routine in "C:\Users\admin1\Desktop\SDK_25_06_00_EVKB-IMXRT1050\boards\evkbimxrt1050\lvgl_examples\lvgl_demo_widgets\mdk\flexspi_nor_sdram_releasep" running in XIP or SDRAM mode? I checked the compiled MAP file, and the execution region is located in both QSPI FLASH and SDRAM. Then, the LVGL files run in both QSPI FLASH and SDRAM. So, is the memory space defined by "#define LV_MEM_SIZE (500 * 1024U)" in the lv_conf.h file in SDRAM or internal RAM? Re: RT1052的运行模式问题 I understand. Thank you! Re: RT1052的运行模式问题 Hi @FromCH0 , Thank you for contacting the NXP technical support team! The project `flexspi_nor_sdram_release` is not in pure SDRAM debug mode, but rather in a hybrid mode defined by the NXP SDK: FlexSPI NOR Flash XIP + SDRAM Data. The official NXP SDK 25.06.00 documentation explicitly states that the program text for this target resides in the FlexSPI NOR Flash and can be executed directly via XIP, while the readable and writable data resides in external SDRAM. Please refer to: https://docs.mcuxpresso.nxp.com/mcuxsdk/25.06.00/html/boards/RT/evkbimxrt1050/gettingStarted/topics/build_an_example_application_003.html Therefore, it is normal to see both QSPI/FlexSPI Flash and SDRAM Execution Regions in the MAP file. Typically, LVGL function code and read-only constants reside in Flash, while LVGL runtime variables, dynamic memory pools, and display buffers reside in SDRAM. A source file may also generate code segments in Flash and data segments in SDRAM simultaneously; its execution location cannot be determined solely by the source file as a whole. LV_MEM_SIZE (500 * 1024U) only defines the size of the LVGL internal dynamic memory pool and does not directly specify the address. If the project uses the LVGL built-in memory manager, does not enable a custom allocator, and does not set a fixed memory pool address, then under the flexspi_nor_sdram_release linker configuration, this approximately 500 KiB memory pool is usually placed as RW/ZI data in external SDRAM, rather than on-chip RAM. You can try searching for work_mem, lv_mem, or the corresponding LVGL memory pool symbol in the generated MAP file to confirm: the address 0x800xxxxx indicates that it is located in external SDRAM. Best regards, Gavin
查看全文
S32N55: 高速ウェイクアップ ブート用の BLOB イメージを構築する方法。 こんにちは、チームの皆さん ご存知のとおり、S32N55 は Fast Wake-up Boot をサポートしています。 Full Wake-up Boot と同じ形式を使用して BLOB イメージをビルディングしようとしましたが、ブート プロセスが失敗しました。 Fast Wake-up Boot 用の BLOB イメージを正しく構築する方法を教えてください。 ご回答をお待ちしています。 Tangsheng_Zhou_0-1766369489644.pngTangsheng_Zhou_0-1766369489644.pngTangsheng_Zhou_0-1766369489644.png よろしくお願いいたします。 唐生。 FSS_FW 優先度: 中 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん チームがこのCASEを引き受け、できるだけ早く回答を提供します。 よろしくお願いします、 ラドゥ Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @RaduBragaさん このチケットがクローズされていることに気づきました。進捗状況について何か最新情報はありますか?   よろしくお願いいたします。 唐生。 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん 私はこのCASEを引き継ぎ、できるだけ早く返答をいたします。   よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん 直接お客様を支援される場合は、以下の書類をご提供ください: BSSM契約:あり/なし 顧客会社*: プロジェクト名*: カスタマーコンタクトポイント*(氏名およびメールアドレス): ソフトウェアおよびハードウェア情報: SWパッケージ情報*: ハードウェア*(ボード/チップセット/プラットフォーム) ソフトウェアバージョン*: *必須 このケースの開発チームとはまだ協力しています よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @PaulB0besさん。 このケースは特定の顧客やプロジェクトに縛られていません。しかし、FUTURE的に同様の質問に直面する可能性があると考えており、このリクエストを出したのです。   よろしくお願いいたします。 唐生。 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん 詳しい情報をありがとうございます。私はこの事件に取り組んでおり、できるだけ早く答えを提供いたします! よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん ブロブ画像を作ろうとした際に実際に踏んだ手順を教えていただけると助かります。そうすれば問題点を特定しやすくなると思います。   よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @PaulB0besさん。 以下に、テストの詳細な手順を示します。   1. AOSRAMメモリ領域内に小さなFSSイメージを構築しました(IVTヘッダーは予約済み)。このイメージにはmain.cのwhileループのみが含まれています。 Tangsheng_Zhou_0-1784553297963.pngTangsheng_Zhou_0-1784553297963.pngTangsheng_Zhou_0-1784553297963.png 2. FSSファームウェアイメージを作成する際、FRBしきい値レジスタを入力する必要がありますか?もしそうなら、どうやって埋めるか、あるいは特別なものを考える必要があります。 Tangsheng_Zhou_1-1784553422329.pngTangsheng_Zhou_1-1784553422329.pngTangsheng_Zhou_1-1784553422329.png 3. IVTツールでIVTブロブイメージを構築し、開始アドレスを0x24800000とする。 4. IVTブロブイメージをフラッシュメモリの0xD00000に書き込みます。 5. システムがスリープ状態に入る前に、IVTブロブイメージをAOSRAMにコピーし、FSS_WKUP0のWKPUモードを高速ウェイクアップモードとして構成します。 Tangsheng_Zhou_2-1784553712231.pngTangsheng_Zhou_2-1784553712231.pngTangsheng_Zhou_2-1784553712231.png Tangsheng_Zhou_3-1784553730808.pngTangsheng_Zhou_3-1784553730808.pngTangsheng_Zhou_3-1784553730808.png 5. FSS_WAKUP0 を介してシステムイメージを起動します。 FSSは while(1) ループに到達できませんでした。ウェイクアップの際に高速ウェイクアップではなく、リセットイベントがトリガーされたようです。   サポートありがとうございます!   よろしくお願いいたします。 唐生。 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん FRBはTCMメモリ(ITCM + DTCM)用です。 理論的には2つのケースがあります 1: 高速起動ブート イメージはAON SRAMメモリから起動するため、高速起動にはFRBは必要ありません。 2: フルウェイクアップブート ITCMに起動したいかどうか教えてもらえますか?もしはい、FRBの閾値0はFSSイメージヘッダーで提供されるべきです。アドレスは12ビットマスクされ、FRBの場合は8kbの倍数として計算されます。 少しでもお役に立てれば幸いです。また、IVTの塊も教えてもらえますか? よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @PaulB0besさん。 いいえ、私は単にF-CoreをAO-SRAMで動作させたいだけです。 main_app1.binはFSSファームウェアイメージです。 これら2つのフィールドをどのように埋めるべきでしょうか?AO_SRAMアドレス0x24800000から始めるべきでしょうか?私のイメージの開始ポインタとエントリポインタは0x24800240です。 Tangsheng_Zhou_0-1784682563629.pngTangsheng_Zhou_0-1784682563629.pngTangsheng_Zhou_0-1784682563629.png main_blob1.binは、IVTヘッダーを含むブロブイメージです。 よろしくお願いします! よろしくお願いいたします。 唐生。 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @PaulB0besさん。 FSSファームウェアではなく、完全なIVTイメージをスリープモードに入る前にAO_SRAMにコピーし、高速ウェイクアップ機能をテストしました。   よろしくお願いします! よろしくお願いいたします。 唐勝 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @PaulB0besさん。 IVTヘッダー、FSS FWヘッダー、およびFSS FWバイナリを含む、IVTブロブイメージ全体がAO_SRAMの先頭にコピーされました。 よろしくお願いします! よろしくお願いいたします。 唐生。 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん 流れを正しく理解しているか確認させてください。スリープ前に完全なIVTブロブイメージをAO_SRAMの先頭にコピーしているのですか、それとも高速ウェイクアップブート用のFSSファームウェアイメージのみをコピーしているのですか? よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん Fast Wake-up Bootが正常に完了しているか確認していただけますか?起動プロセスが正常に動作していることが確認された場合、画像に問題がある可能性があります。 考えられる原因を段階的に絞り込んでいきたいと思います。   よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @PaulB0besさん。 WKPUの設定は正しいと思います。私の理解では、フルウェイクアップとファストウェイクアップの主な違いは、WBMSRの設定にある。それで合っていますか? 他に考慮すべき設定や要素はありますか? また、正しい手順や、あなたやチームが確認した速い目覚めのブロブ画像も教えていただけますか? サポートありがとうございます! よろしくお願いいたします。 唐生。 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん 現在、チームはリリース作業で手一杯の状態です。私の方でも少し働きかけ、調査を行い、できるだけ早く回答をお伝えします。   よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん WBMSRは、フルウェイクアップブートとファストウェイクアップブートの主な違いの一つです。しかし、それは唯一の要因ではない。 高速ウェイクアップブートの場合、BootROMはスリープに入る前に、AON SRAMに有効なイメージ(IVT + FSS FW、必要に応じてウェイクアップDCDを含む)が存在することを想定しています。WBMSRに加えて、ウェイクアップソースの設定、AON SRAMの保持、および有効なIVT/FSSヘッダーも検証する必要があります。 想定される高速起動フローは以下のとおりです。   1. IVT + FSS FW を含む IVT ブロブイメージを生成します。 2. 必要に応じて、ウェイクアップDCDを追加します。 3. ブロブイメージをAON SRAMの先頭にコピーします。 4. システムを高速起動モードに設定します。 5. スリープモードに入り、ウェイクアップソースをトリガーする 検証済みのFast Wake-upブロブイメージについては、現在社内で確認しており、検証済みの参照イメージが入手可能になり次第、ご連絡いたします。   少しでもお役に立てれば幸いです。   よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは、 @PaulB0besさん。 ご返信ありがとうございます。ご指示いただいた手順に従って高速起動機能をテストしましたが、問題は依然として発生しています。ご自身の側で成功裏にテストしたか確認いただけますか?   ありがとうございます! よろしくお願いいたします。 唐生。 Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん 提供された回答が適切であり、チケットに関して他に質問がない場合は、回答を「解決策として承認」としてマークしてください。 今後のケースでは、NXP JIRA: Jira Projectをご利用ください  さらに、7日以内に返答がなければ、CASEを終了します。 よろしくお願いいたします。 ポール Re: S32N55: How to build a blob image for fast wake-up boot. こんにちは@Tangsheng_Zhouさん 送っていただいたメインのブロブ画像をもう一度確認しましたが、特に問題は見当たりません。画像自体も正しいように見える。私が提示した手順は、事前にテスト済みです。チームと協議し、リセット問題に対する別の解決策をできるだけ早くご連絡いたします。 よろしくお願いいたします。 ポール
查看全文
IMXRT1062のPWMキャプチャは、プリスケーラがkPWM_Prescaと異なる値に設定されている場合に停止します。 こんにちは、 4 つの PWM ペリフェラルのいずれかのクロック パースケーラーを kPWM_Prescale_Divide_1 以外の値で構成すると、選択した PWM ペリフェラルのカウンターがまったく動作しないという問題が発生しました。 私はimxrt1062プロセッサとMCUXpresso IDE v11.9.1を使用しています。 できるだけ早くサポートしていただければ幸いです。 以下は、PWM ペリフェラルを設定および初期化するコードの一部です。 静的 空所 pwm_init ( void ) { pwm_config_t pwmConfig; pwm_input_capture_param_tキャプチャ設定; pwm_fault_param_t障害構成; /* PWMのデフォルト設定を読み取る */ PWM_GetDefaultConfig(&pwmConfig); pwmConfig.clockSource = kPWM_BusClock ;​ pwmConfig.prescale = kPWM_Prescale_Divide_2 ;​ pwmConfig.pairOperation = kPWM_Independent ;​ pwmConfig.initializationControl = kPWM_Initialize_LocalSync ;​ pwmConfig. reloadLogic = kPWM_ReloadImmediate ; pwmConfig. reloadSelect = kPWM_LocalReload ; pwmConfig. reloadFrequency = kPWM_LoadEveryOportunity ; pwmConfig.forceTrigger = kPWM_Force_LocalSync ;​ pwmConfig.enableDebugMode = true; PWM_Init(PWM1_BASEADDR、 kPWM_Module_3 、&pwmConfig); PWM_Init(PWM2_BASEADDR、 kPWM_Module_3 、&pwmConfig); PWM_Init(PWM3_BASEADDR、 kPWM_Module_1 、&pwmConfig); PWM_Init(PWM4_BASEADDR、 kPWM_Module_1 、&pwmConfig); // 障害構成 PWM_FaultDefaultConfig(&faultConfig); /* PWM障害保護を設定します */ PWM_SetupFaults(PWM1_BASEADDR、 kPWM_Fault_0 、&faultConfig); PWM_SetupFaults(PWM1_BASEADDR、 kPWM_Fault_1 、&faultConfig); PWM_SetupFaults(PWM1_BASEADDR、 kPWM_Fault_2 、&faultConfig); PWM_SetupFaults(PWM1_BASEADDR、 kPWM_Fault_3 、&faultConfig); /* サブモジュール0/1/2のPWM障害無効化マッピングを設定する */ PWM_SetupFaultDisableMap(PWM1_BASEADDR、 kPWM_Module_0 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM1_BASEADDR、 kPWM_Module_1 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM1_BASEADDR、 kPWM_Module_2 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM1_BASEADDR、 kPWM_Module_3 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); /* PWM障害保護を設定します */ PWM_SetupFaults(PWM2_BASEADDR、 kPWM_Fault_0 、&faultConfig); PWM_SetupFaults(PWM2_BASEADDR、 kPWM_Fault_1 、&faultConfig); PWM_SetupFaults(PWM2_BASEADDR、 kPWM_Fault_2 、&faultConfig); PWM_SetupFaults(PWM2_BASEADDR、 kPWM_Fault_3 、&faultConfig); /* サブモジュール0/1/2のPWM障害無効化マッピングを設定する */ PWM_SetupFaultDisableMap(PWM2_BASEADDR、 kPWM_Module_0 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM2_BASEADDR、 kPWM_Module_1 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM2_BASEADDR、 kPWM_Module_2 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM2_BASEADDR、 kPWM_Module_3 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); /* PWM障害保護を設定します */ PWM_SetupFaults(PWM3_BASEADDR、 kPWM_Fault_0 、&faultConfig); PWM_SetupFaults(PWM3_BASEADDR、 kPWM_Fault_1 、&faultConfig); PWM_SetupFaults(PWM3_BASEADDR、 kPWM_Fault_2 、&faultConfig); PWM_SetupFaults(PWM3_BASEADDR、 kPWM_Fault_3 、&faultConfig); /* サブモジュール0/1/2のPWM障害無効化マッピングを設定する */ PWM_SetupFaultDisableMap(PWM3_BASEADDR、 kPWM_Module_0 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM3_BASEADDR、 kPWM_Module_1 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM3_BASEADDR、 kPWM_Module_2 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM3_BASEADDR、 kPWM_Module_3 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); /* PWM障害保護を設定します */ PWM_SetupFaults(PWM4_BASEADDR、 kPWM_Fault_0 、&faultConfig); PWM_SetupFaults(PWM4_BASEADDR、 kPWM_Fault_1 、&faultConfig); PWM_SetupFaults(PWM4_BASEADDR、 kPWM_Fault_2 、&faultConfig); PWM_SetupFaults(PWM4_BASEADDR、 kPWM_Fault_3 、&faultConfig); /* サブモジュール0/1/2のPWM障害無効化マッピングを設定する */ PWM_SetupFaultDisableMap(PWM4_BASEADDR、 kPWM_Module_0 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM4_BASEADDR、 kPWM_Module_1 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM4_BASEADDR、 kPWM_Module_2 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); PWM_SetupFaultDisableMap(PWM4_BASEADDR、 kPWM_Module_3 、 kPWM_PwmA 、 kPWM_faultchannel_0 、 kPWM_FaultDisable_0 | kPWM_FaultDisable_1 | kPWM_FaultDisable_2 | kPWM_FaultDisable_3 ); /* ワンショットポーリング用のPWMのキャプチャ入力を設定します */ キャプチャConfig.captureInputSel = true; キャプチャ構成。エッジ0 = kPWM_RiseAndFallEdge ; キャプチャーConfig.edge1 = kPWM_Disable ; キャプチャ設定。enableOneShotCapture = false; キャプチャ構成。edgeCompareValue = 1; PWM_SetupInputCapture(PWM1_BASEADDR、 kPWM_Module_3 、 kPWM_PwmA 、&captureConfig); PWM_SetupInputCapture(PWM2_BASEADDR、 kPWM_Module_3 、 kPWM_PwmA 、&captureConfig); PWM_SetupInputCapture(PWM3_BASEADDR、 kPWM_Module_1 、 kPWM_PwmA 、&captureConfig); PWM_SetupInputCapture(PWM4_BASEADDR、 kPWM_Module_1 、 kPWM_PwmA 、&captureConfig); PWM_SetPwmLdok(PWM1_BASEADDR、 kPWM_Control_Module_3 、true); PWM_SetPwmLdok(PWM2_BASEADDR、 kPWM_Control_Module_3 、true); PWM_SetPwmLdok(PWM3_BASEADDR、 kPWM_Control_Module_1 、true); PWM_SetPwmLdok(PWM4_BASEADDR、 kPWM_Control_Module_1 、true); PWM_StartTimer(PWM1_BASEADDR、 kPWM_Control_Module_3 ); PWM_StartTimer(PWM2_BASEADDR、 kPWM_Control_Module_3 ); PWM_StartTimer(PWM3_BASEADDR、 kPWM_Control_Module_1 ); PWM_StartTimer(PWM4_BASEADDR、 kPWM_Control_Module_1 ); } Re: PWM Capturing on IMXRT1062 Stopped when the prescaler is set with a value different from kPWM_Pr こんにちは、 プリスケーラを任意の値に設定しても機能せず、カウンターが増加しないというメッセージがいくつか報告されています。 mcf54415のmcPWMでも同じ問題が発生しています。 もしデータシートに記載されていないシーケンスがあれば、プリスケーラーを動作させることができる方がいれば教えてほしいです。あるいは全く機能しないのかもしれません。
查看全文
MBDT_S32E2_Installation_Issue Hi Team, I am reaching out for assistance as I am currently unable to install the Model Based Design Toolbox for S32Z/E. I have MATLAB 2024b (even tried with MATLAB 2026a) installed on my system and also have an active NXP account. I downloaded the NXP_Support_Package_S32ZE_1.4.0_D2512.mltbx file, however when I attempt to proceed with the installation per Quick Start Guide, the process remains stuck indefinitely without completing or progressing further. I would really appreciate your help in identifying what might be causing this issue and any guidance on how I can successfully complete the installation. Please let me know if there are any logs or additional details I should provide to assist in troubleshooting. Thank you in advance for your support. I have followed both the methods per user guide and had no luck. Online method: Per user guide section 1.2.2, I downloaded the NXP Model-Based Design Toolbox for S32Z/E series (NXP Model-Based Design Toolbox for S32Z/E series. Link :https://uk.mathworks.com/matlabcentral/fileexchange/134202-nxp_support_package_s32ze), but in step 1.2.2(f), "NXP_Support_Package_S32ZE.m" is not present in the folder after following the steps. Offline method: Following section 1.2.1, the toolbox download page redirects to my profile, and there is no S32E2 toolbox available under "Automotive SW-Model-Based Design Toolbox" on the website . Design : Product Information : Automotive SW - Model-Based Design Toolbox Just wondering if I am following the correct steps. are NXP_Support_Package_S32ZE and Toolboxes two different packages? Thanks, Ravi Re: MBDT_S32E2_Installation_Issue Hi vladmitroi Thanks so much for your support. The issue has been resolved. Best Regards, Ravi Re: MBDT_S32E2_Installation_Issue Hello,  Thank you for using our products. The issue is related to the software package access for the all S32ZE suite. You should first time access the entire package with all the S32ZE software and then the toolbox will be visible.  You can follow the steps from this document to get the mltbx from the nxp.com. To install it just drag and drop the .mltbx into MATLAB. As a note, the latest version supported is 2024b.  In the document the 1.3.0 version is mentioned, but the steps are the same for latest version 1.4.0. (should be visible in the version lists)
查看全文
MBDT_S32E2_インストールに関する問題 皆さんこんにちは。現在S32Z/EのModel Based Design Toolboxをインストールできないため、助けを求めています。私のシステムにはMATLAB 2024b(MATLAB 2026aでも試しました)がインストールされており、NXPのアカウントも有効です。NXP_Support_Package_S32ZE_1.4.0_D2512.mltbx ファイルをダウンロードしましたが、クイックスタートガイドに従ってインストールを進めようとすると、プロセスが完了またはそれ以上進まずに、いつまでも停止したままになります。この問題の原因を特定する手助けや、インストールを円滑に完了させるためのアドバイスをいただけると本当にありがたいです。トラブルシューティングに役立つログや追加情報があればお知らせください。サポートにあらかじめ感謝いたします。 ユーザーガイドに従って両方の方法を試しましたが、うまくいきませんでした。 オンライン方式: ユーザーガイドのセクション1.2.2によると、私はNXPモデルベース設計ツールボックス(S32Z/Eシリーズ向けNXPモデルベースデザインツールボックス)をダウンロードしました。リンク: https://uk.mathworks.com/matlabcentral/fileexchange/134202-nxp_support_package_s32ze )しかし、手順 1.2.2(f) では、手順を実行した後でもフォルダー内に「NXP_Support_Package_S32ZE.m」が存在しません。 オフラインの方法: セクション1.2.1の後、ツールボックスのダウンロードページは私のプロフィールにリダイレクトされ、ウェブサイトの「オートモーティブ SW-Model-Based Design Toolbox」にはS32E2のツールボックスはありません。 デザイン:製品情報:オートモーティブ SW - モデルベース設計ツールボックス 手順が合っているかどうか確認したいのですが。 NXP_Support_Package_S32ZEとToolboxesは別のパッケージですか? ありがとうございます ラヴィ Re: MBDT_S32E2_Installation_Issue こんにちは、vladmitroi ご支援ありがとうございます。問題は解決しました。 よろしくお願いいたします。 ラヴィ Re: MBDT_S32E2_Installation_Issue こんにちは、 当社の製品をご利用いただきありがとうございます。問題はS32ZEスイート全体のソフトウェアパッケージへのアクセスに関するものです。まずはS32ZEの全ソフトウェアでパッケージ全体にアクセスでき、その後ツールボックスが見えるようになります。 この書類の手順に従って、nxp.com からMLTBXを取得することができます。インストールするには、.mltbxファイルをドラッグアンドドロップするだけです。MATLABに取り込む。なお、サポートされている最新バージョンは2024bです。 文書では 1.3.0バージョンが記載されていますが、最新バージョン1.4.0でも手順は同じです。(バージョン一覧に表示されるはずです)
查看全文
Kinetis (../45/47/43;MCX W71/72/70) および MCX W23 電源プロファイルツール (ローカライズ機能を含む) このページは、Kinetis (KW35/KW38/KW45/KW47) および MCX Wx (MCX W71/72 および MCX W23) 電力プロファイル ツール専用です。 これにより、あなたのアプリケーション(オートモーティブ、IIoT、トラッカー/タグ、連続血糖モニタリング[CGM])の消費電力を推定し、ソリューションのバッテリー寿命を評価するのに役立ちます。 このページには、単独製品またはフルシステムアプリケーション向けの専用パワープロファイルツールを提供する4つのマーケットセグメントが含まれています:   1. オートモーティブ Kinetis(KW3x/4x)オートモーティブ用パワープロファイルツール - NXPコミュニティ KW35/36製品用のBluetooth LEをスタンドアロンで使用。 Bluetooth LEはKW37/38/39製品用のスタンドアロン対応です。 KW45/KW47製品用のBluetooth LEをスタンドアロンで使用。 スマートフォブアプリケーション(BLE/KW45;UWBレンジャー4位;SE;モーション・センサ) スマートフォブアプリケーション(BLE/KW47;UWBレンジャー5;SE;モーション・センサ) 2.IIoT Kinetis MCX Wxx(MCX W71/72 および MCX W23)IIoT用パワープロファイルツール - NXPコミュニティ Bluetooth LEは単体でMCX W71/MCX W72製品用です。 MCX W23製品のBluetooth LEをスタンドアロンで提供します。 スタンドアロン (IIoT) の MCX W71 および W72 マター製品用の 802.15.4 Matter ICD SIT & LIT および ZED。 Aliro Doorlockアプリケーション    3. オートモーティブおよび工業技術向けローカリゼーションアプリケーション(CCC CS) Kinetis MCX Wxx(KW47およびMCX W72)Bluetoothローカライゼーション用パワープロファイルツール - NXPコミュニティ 4.新しいツールが登場: Zephyr・ズボス Zephyr BLE KW45/MCX W71 または KW47/MCX W72 を使用して PCB を構築し、無線の性能と無線認証 (CE/FCC/IC) に関する情報をすべて得るには、次の重要なリンクを参照してください。 KW45(カーアクセサリ)を使ってPCBを構築する最良の方法 - NXPコミュニティ 電力および低電力アプリケーションノートについては、製品ページをご覧ください。便宜上、いくつかの直接リンクを次に示します。 MCXW71 - 電源管理ハードウェア KW45/K32W148 - 電源管理ハードウェア 異なる体験:One コネクティビティ Power Profilingツール コネクティビティの電力プロファイリングツールをすべて一つにまとめています。 Kinetis(KW3x/4x、MCX W7xおよびMCX W23)One コネクティビティ Power Profile Tool - NXPコミュニティ 注:このツールはかなり遅いですが、Kinetis製品を比較するのに非常に興味深いです。 製品: K32W0 製品: K32W1 製品: KW 34|35|36 製品: KW 37|38|39 製品: KW41Z |31Z | 21Z 製品: QN9080|SIP 製品: QN9090|30 Re: Kinetis (KW35/38/KW45 & K32W1/MCX W71) Power Profile Tools (including Localization) こんにちは、エベレット。 パスワードは、変更や競合他社のベンチマークの詳細が多すぎることを避けるために設定されています。 ご不便をおかけして申し訳ございませんが、それはCANません。 Re: Kinetis (KW35/38/KW45 & K32W1/MCX W71) Power Profile Tools (including Localization) こんにちは、christophe_menardさん。 @christophe_menardシート保護のパスワードを教えていただけますか。よろしくお願いします。 EverettRao_0-1729134009121.pngEverettRao_0-1729134009121.png Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) こんにちは 、 OneConnectivityPowerProfilingtool_SDK_26_03.zip を使用したいのですが、トロイの木馬が検出されました。 このツールの使い方。 サポートありがとうございます Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) こんにちは、 @pierre_demeyer この件を確認するため、社内のIT部門に問い合わせチケットを発行しました。 近いうちにまたご連絡します。 Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) こんにちは、 @pierre_demeyer IT認証の結果、CrowstrikeやDefenderのソフトウェアを使ってトロイの木馬ウイルスは検出されませんでした。
查看全文
Kinetis (.. /45/47/43;MCX W71/72/70) & MCX W23 Power 我的 工具(包括本地化) 本页专用于 Kinetis(KW35/KW38/KW45/KW47)和 MCX Wx(MCX W71/72 & MCX W23)Power 我的 工具。 它将帮助您估算应用(汽车、工业物联网、追踪器/标签和连续血糖监测 [CGM])中的功耗,并评估解决方案的电池寿命。 本页面包含 4 个市场细分领域,分别针对独立产品或完整系统应用提供专用的功率分析工具: 1. 汽车 Kinetis (KW3x/4x) 汽车行业功率我的分析工具 - NXP 社区 KW35/36 产品独立组网 (SA)的蓝牙低功耗功能。 KW37/38/39 产品独立组网 (SA)的蓝牙低功耗功能。 KW45/KW47 产品独立组网 \(SA\)的蓝牙低功耗功能。 SmartFob 应用(BLE/KW45;UWB Ranger4;SE;运动传感器) SmartFob 应用(BLE/KW47;UWB Ranger5;SE;运动传感器) 2.工业物联网 (IIoT) ... Kinetis MCX Wxx(MCX W71/72 和 MCX W23)工业物联网电源我的工具 - NXP 社区 MCX W71/MCX W72 产品独立组网 \(SA\)蓝牙低功耗 (Bluetooth LE) 功能。 MCX W23 产品独立组网 (SA)的蓝牙低功耗 (Bluetooth LE)。 802.15.4 Matter ICD SIT & LIT 和 ZED 适用于 MCX W71 & W72 独立组网 (IIoT) 产品。 Aliro门锁应用 3. 面向汽车和工业物联网的定位应用(CCC CS) Kinetis MCX Wxx (KW47 & MCX W72) 蓝牙定位电源我的工具 - NXP 社区 4.新工具即将推出: Zephyr Zboss Zephyr BLE 请找到这个重要链接,使用 KW45/MCX W71 或 KW47/MCX W72 版本 PCB,以及所有与无线电性能和无线电认证 (CE/FCC/IC) 相关的内容: 使用KW45版本 PCB 的最佳方式(汽车配件...-恩智浦社区 有关功耗和低功耗应用笔记,请参阅产品页面。以下是一些直接链接,以方便您使用: MCXW71 - 电源管理单元硬件 KW45/K32W148-电源管理单元硬件 不同的体验:One 连接 Power Profiling 工具 它将所有连接电源分析工具集成在一个工具中。 Kinetis(KW3x/4x、MCX W7x 和 MCX W23)连接电源我的工具 - NXP 社区 注意:此工具速度较慢,但对于比较 Kinetis 产品非常有用。 产品:K32W0 产品:K32W1 产品:KW 34|35|36 产品:KW 37|38|39 产品:KW41Z |31Z |21Z 产品:QN9080|SIP 产品:QN9090|30 Re: Kinetis (KW35/38/KW45 & K32W1/MCX W71) Power Profile Tools (including Localization) 嗨,埃弗雷特、 密码的设置是为了避免在太多细节上出现变化或竞争对手的基准。 很抱歉给您带来不便,但这是不可能的。 Re: Kinetis (KW35/38/KW45 & K32W1/MCX W71) Power Profile Tools (including Localization) 你好,克里斯托夫-梅纳德。 @christophe_menard能否提供Sheet 保护 密码 ,非常感谢。 EverettRao_0-1729134009121.pngEverettRao_0-1729134009121.png Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) 你好 , 我们想使用OneConnectivityPowerProfilingtool_SDK_26_03.zip,但检测到了木马程序。 如何使用这个工具? 感谢您的支持 Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) 嗨@pierre_demeyer 我已向IT部门提交了工单以核实此事。 我会尽快通知您最新情况。 Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) 嗨@pierre_demeyer 经 IT 部门核实,使用 Crowstrike 或 Defender 软件均未检测到木马病毒。
查看全文
Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) This page is dedicated to the Kinetis (KW35/KW38/KW45/KW47) and MCX Wx (MCX W71/72 & MCX W23) Power Profile Tools. It will help you to estimate the power consumption in your application (Automotive, IIoT, Trackers/Tags and Continuous Glucose Monitoring [CGM]) and evaluate the battery life time of your solution. This page contains 4 market segments which provides dedicated power profile tool on standalone product or full system application for:    1. Automotive Kinetis (KW3x/4x) Power Profile Tools for Automotive - NXP Community Bluetooth LE for the KW35/36 products in standalone. Bluetooth LE for the KW37/38/39 products in standalone. Bluetooth LE for the KW45/KW47 products in standalone. SmartFob application (BLE/KW45; UWB Ranger4; SE; motion sensor)  SmartFob application (BLE/KW47; UWB Ranger5; SE; motion sensor)     2. IIoT Kinetis MCX Wxx (MCX W71/72 & MCX W23) Power Profile Tools for IIoT - NXP Community Bluetooth LE for the MCX W71/MCX W72 product in standalone. Bluetooth LE for the MCX W23 product in standalone. 802.15.4 Matter ICD SIT & LIT and ZED for the MCX W71 & W72 product in standalone (IIoT). Aliro Doorlock application    3. Localisation application (CCC CS) for Automotive & IIoT Kinetis MCX Wxx (KW47 & MCX W72) Power Profile Tools for Bluetooth Localization - NXP Community    4. New tools coming: Zephyr Zboss Zephyr BLE Please, find this important link to build a PCB using a KW45/MCX W71 or KW47/MCX W72 and all concerning the radio performances and radio certification (CE/FCC/IC): The best way to build a PCB using a KW45 (car acce... - NXP Community For Power and Low Power Application Notes please see product pages. Here are some direct links for your convenience: MCXW71 - Power Management Hardware KW45/K32W148 - Power Management Hardware A different experience: One Connectivity Power Profiling tool It includes all the Connectivity power profiling tools in one. Kinetis (KW3x/4x, MCX W7x and MCX W23) One Connectivity Power Profile Tool - NXP Community Note: This tool is quite slow but very interesting to compare Kinetis products. Product: K32W0 Product: K32W1 Product: KW 34|35|36 Product: KW 37|38|39 Product: KW41Z |31Z | 21Z Product: QN9080|SIP Product: QN9090|30 Re: Kinetis (KW35/38/KW45 & K32W1/MCX W71) Power Profile Tools (including Localization) Hi Everett, The password is in place to avoid changes or competitor benchmarks in too much details. Sorry for the inconvenient but it can't be. Re: Kinetis (KW35/38/KW45 & K32W1/MCX W71) Power Profile Tools (including Localization) Hi  christophe_menard, @christophe_menard  Could you provide the password of Sheet protection, thanks very much. EverettRao_0-1729134009121.pngEverettRao_0-1729134009121.png Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) Hello , We would like to work with OneConnectivityPowerProfilingtool_SDK_26_03.zip but a trojan is detected. How to do to use thtis tool. Thank you for the support Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) Hi @pierre_demeyer  I opened a ticket to our IT to verify this. I will keep you informed soon. Re: Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization) Hi @pierre_demeyer  After IT verification, no Trojan virus was detection using Crowstrike or Defender softwares.
查看全文
MCX W72 Knowledge hub The MCX W72x family features a 96 MHz Arm® Cortex®-M33 core coupled with a multiprotocol radio subsystem supporting Matter, Thread, Zigbee and Bluetooth LE. The independent radio subsystem, with a dedicated core and memory, offloads the main CPU, preserving it for the primary application and allowing firmware updates to support future wireless standards. The MCX W72x also offers advanced security with an integrated EdgeLock® Secure Enclave Core Profile and will be supported by NXP's EdgeLock 2GO cloud services for credential sharing. The MCX W72x family includes Bluetooth Channel Sounding capabilities, with a dedicated on-chip Localization Compute Engine to reduce ranging latency. It incorporates additional memory to support application-specific code, connectivity stacks and over-the-air firmware updates. In addition, the radio subsystem can run the full Thread or Zigbee stack alongside the Bluetooth Low Energy stack. This delivers reliable wireless performance, as the real-time activities of the radio run on a separate core from the application. Building on NXP's strong history of providing industrial edge solutions, the MCX W series offers a wide operating temperature range from -40 °C to 125 °C and peripherals for industrial applications, including an optional CAN interface and will be part of NXP's 15-year Product Longevity program to support long-term industrial use. The MCX W series is supported by the MCUXpresso Developer Experience to optimize, ease and help accelerate embedded system development. joseAntonio_ruiz_0-1739550415233.pngjoseAntonio_ruiz_0-1739550415233.png   joseAntonio_ruiz_1-1739550414945.pngjoseAntonio_ruiz_1-1739550414945.png Security Certifications  PSA Certified Level 2 SESIP Level 2 Security Target  SESIP Level 2 KW47/MCXW72 SESIP certificate and ST are on TrustCB website Regulatory Certifications European Union Declaration of Conformity - FRDM MCXW72 MIC Radio Certificate - FRDM-MCXW72 European Union Declaration of Conformity - MCXW72-LOC MIC Radio Certificate - MCXW72-LOC Bluetooth Qualifications Qualified Products | Bluetooth® Technology Website Q360996: KW47 / MCX W72 Bluetooth LE 6.0 (Channel Sounding) Controller Q332147: KW47 / MCX W72 Bluetooth LE 6.0 (Channel Sounding) Host Documents MCX W72 Product Family Data Sheet MCX W72 Reference Manual Errata Sheet for MCX W72 MCXW72 Hardware Design Guide   Getting Started with Matter on MCX W72 platforms Getting Started with OpenThread on NXP MCX W72    FRDM-MCXW72 User Manual Getting Started with the FRDM-MCXW72   MCX W72-LOC User Manual Bluetooth Interested in Bluetooth technology? Bluetooth® Low Energy Primer – Essential reading for understanding BLE fundamentals. Bluetooth® Specifications – Full list of standards, protocols, and technical documents. Awards and Recognition - Every year, the Bluetooth Special Interest Group (SIG) celebrates the hard work and commitment of working groups, committee members, and contributors who have been recognized by their peers as making a difference in advancing Bluetooth technology.  2024: Channel Sounding 2025: Channel sounding amplitude-based attack resilience, LE test mode enhancements and Ranging profile and service.  Bluetooth Feature Overview Bluetooth_5.0_Feature_Overview  Bluetooth_5.1_Feature_Overview  Bluetooth_5.2_Feature_Overview Bluetooth_5.3_Feature_Overview Bluetooth_5.4_Feature_Overview Bluetooth_6_Feature_Overview Bluetooth_6.1_Feature_Overview Bluetooth_6.2_Feature_Overview Bluetooth_6.3_Feature_Overview Application Notes Software, Hardware and Peripherals: AN14850 Boosting application performance with MCX W72: This application note describes the usage of the dual-core architecture in the MCX W72 microcontroller to improve performance in generic embedded applications. AN14937 32kHz Crystal-less mode on MCX W72: This application note provides information on the 32 kHz Crystal-less mode on the MCX W72 device. This mode allows you to reduce the cost of the system, without compromising the 32 kHz clock accuracy. The Free‑Running Oscillator (FRO32K) is used as the 32 kHz clock source and is calibrated against the 32 MHz RF oscillator through the Signal Frequency Analyzer (SFA) module of MCX W72 AN14745 Features, Usage, and Capabilities of Smart Power Switch on the MCX W72: This application note describes the use of the smart power switch in the MCX W72microcontroller. The MCX W72 integrates a programmable solid-state switch that turns connected components on or off, including MCX W72 power domains. AN14747 Loadpull test Report for MCX W72: This document explains the purpose of measuring the supply current, the transmit power, and the harmonics level. These measurements are monitored while the complex output load seen by the device under test (DUT) is tuned in amplitude and phase. Power Management:  AN14739 MCX W72 Bluetooth Low Energy Power Consumption Analysis: This document provides the power consumption analysis of the MCX W72 (IIOT) wireless MCU using the MCXW72-EVK board AN14745 Features Usage and Capabilities of Smart Power Switch on MCX W72 Microcontroller:  This application note describes the use of the smart power switch in the MCX W72 microcontroller. The MCX W72 integrates a programmable solid-state switch that turns connected components on or off, including MCX W72 power domains. AN14841 802.15.4 Matter and Zigbee Power Consumption Analysis for MCX W72: This document provides the power consumption analysis of the Kinetis MCX W72 (IIoT) wireless MCUs. AN14742 Power Management Hardware for the MCX W72: This application note describes the usage of the different modules dedicated to power management in the MCX W72microcontroller AN14664 Coincell Hardware Recommendations for Kinetis BLE Applications: his document describes some hardware and software solutions to minimize the peaks of current at the coin cell level AN14889: FRDM-MCXW72 Radio Frequency System Evaluation Report for Bluetooth Low Energy and for IEEE 802.15.4 This document provides the radio frequency (RF) evaluation test results of the FRDM-MCXW72 board for Bluetooth Low Energy (2FSK modulation) and IEEE 802.15.4 (OQPSK modulation) applications.  RF: AN14865 Channel Sounding Fundamentals for the KW47 and MCX W72: This document provides an overview of the fundamentals for CS technology and how it can be used for custom solutions and applications. AN14779 Printed Channel Sounding Antennas for the KW47 and MCX W72: his application note is focused on printed antennas implemented on printed-circuit boards (PCB), designed by NXP for the KW47 and MCX W72 controllers AN14832 Fundamental Steps to Design a Channel Sounding Board - Creating a Simple PCB without Diversity: In this document, an example of a minimalistic CS subsystem is presented. Attention is paid to the Radio-Frequency (RF) path, since RF circuitry strongly influences the properties of the whole CS application. AN14747 Loadpull Test Report for MCX W72: This document explains the purpose of measuring the supply current, the transmit power, and the harmonics level. These measurements are monitored while the complex output load seen by the device under test (DUT) is tuned in amplitude and phase. AN14868 RF Modeling of Channel Sounding in ANSYS: focuses on techniques for simulating and analyzing channel sounding in wireless communication systems using ANSYS tools AN14855 Channel Sounding Tests in Different Environments: This application note is about Bluetooth Channel Sounding (CS), a technique for measuring the distance between two devices in the Bluetooth frequency band. It explains key factors affecting accuracy AN14869 Fundamental Steps to Design a Complex Channel Sounding Board:  It focuses on creating hardware that supports advanced CS features, including antenna diversity and optimized RF paths, to improve accuracy and mitigate issues like multipath propagation. AN2731 Compact Planar Antennas for 2.4GHz Communication: This document is not an exhaustive inquiry into antenna design. It is instead focused on helping the customers understand enough board layout and antenna basics to select a correct antenna type for their application, as well as avoiding typical layout mistakes that cause performance issues that lead to delays Security: AN14648 MCX W72 In-System Programming Utility: The document provides steps to boot the MCX W72 MCU in ISP mode and establish various serial connections to communicate with the MCU AN14613 MCX W72 Secure Boot using SEC tool: The MCX W72 is a low-power, highly secure, single-chip wireless MCU, the contents of flash memory can be saved as encrypted data, which can be decrypted instantly. It helps in protecting the sensitive data and algorithms. AN14646 Debug Authentication on MCX W72: This application note describes the steps for debug authentication using the MCUXpresso Secure Provisioning Tool (SEC). AN14728 MCX W72 Flash Encryption using NPX: There is an increasing requirement to protect the application code and data stored in flash memories in an encrypted form due to security reasons. The NVM PRINCE XEX (NPX) is a module inside the Flash Memory Controller (FMC) that allows customers to protect the contents of flash regions (up to four regions). It performs on-the-fly, low-latency encryption and decryption of flash contents, and it is transparent to the developer and to the Cortex-M33 platform. No special handle is needed from the perspective of the developer. AN14644 MCX W72 Managing Lifecycles: This document describes the following: Lifecycle stages that are available to the user, how to access the lifecycles, limitations of the lifecycles, how to transition to the next lifecycle AN14670 EdgeLock 2GO Provisioning via SPSDK for MCUs: EdgeLock 2GO is a fully managed cloud platform operated by NXP that provides secure provisioning services for easy deployment and maintenance of IoT devices that integrate NXP MCU, MPU, and EdgeLock SE05x secure elements. AN14624 EdgeLock 2GO PRovisioning via Secure Provisioning Tool (SEC) for MCUs: EdgeLock 2GO is a fully managed cloud platform operated by NXP that provides secure provisioning services for easy deployment and maintenance of IoT devices that integrate NXP MCU, MPU, and EdgeLock SE05x secure elements. AN14544 EdgeLock 2Go Services for MPU and MCU: EdgeLock 2GO is the service platform of NXP for provisioning and managing IoT devices. It lets you securely install keys and certificates into your devices, either during manufacturing or in the field, and then keep credentials up to date during the device life cycle. EdgeLock 2GO uses the security capability of each device, for optimal levels of security across your entire IoT fleet. Bluetooth Training Bluetooth Low Energy 6.0 NXP Training MCX W Series Training - NXP Community   RF Switch Comparison Absorptive/Reflective Standards Comparison ETSI / FCC / ARIB requirements BLE Channel Sounding  - Overview BLE Channel Sounding - RF Hardware BLE Channel Sounding - ANSYS Modeling Tools  BLE Channel Sounding - Antenna Prototypes Validation Measurements Equipment Wireless Equipment: This article provides the links to the Equipment that helps to the project development  Useful Links Debug probe firmware installation for the KW47-EVK and FRDM-MCXW72 This post will cover how to install the CMSIS-DAP/SEGGER J-link firmware for the KW47-EVK and FRDM-MCXW72 using NXP’s MCU-LINK installer. How to generate a Standalone IAR toolchain project from MCUXSDK application example - KWX/MCWX  Updating NBU for Wireless Examples on KW47/MCXW72This post will cover how to update the NBU firmware How to import and run demo examples with MCUXpresso for Visual Studio Code: This article gives information on how to import and run demo examples from the new SDK with ARM GCC toolchain, in MCUXpresso for Visual Studio Code. [MCUXSDK] How to use GitHub SDK for KW4x, MCXW7x, MCXW2x - NXP Community this community post provides step by step how to use GitHub SDK [MCUXSDK] GitHub SDK - Documentation for Bluetooth LE platforms - NXP Community this community post provides the documentation for BLE platforms.  The best way to build a PCB first time right with KW47 (Automotive) or MCXW72 (IoT/Industrial): In this community provides the important link to build a PCB using a KW45 or K32W148 and MCXW71 and all concerning the radio performances, low power and radio certification (CE/FCC/ICC) Workaround implementation for DCDC failure during drive strength change a DCDC failure can occur infrequently during a drive strength change to low, and the DCDC output voltage becomes greater than or equal to the current output voltage. How to use the HCI_bb on Kinetis family products and get access to the DTM mode:  This article is presenting two parts: How to flash the HCI_bb binary into the Kinetis product. Perform RF measurement using the R&S CMW270 BLE HCI Application to set transmitter/receiver test commands: This article provides the steps to show how user could send serial commands to the device. Bluetooth LE HCI Black Box Quick Start Guide : This article describes a simple process for enabling the user controls the radio through serial commands. Kinetis (../45/47/43;MCX W71/72/70) & MCX W23 Power Profile Tools (including Localization):  This page is dedicated to the Kinetis (KW35/KW38/KW45/KW47/KW43) and MCX W7x (MCX W71/W72/W70) Power Profile Tools. It will help you to estimate the power consumption in your application (Automotive or IIoT) and evaluate the battery lifetime of your solution. KW47/MCXW72 32MHz & 32kHz Oscillation margins: this article provides the properly configuration for the Oscillation margins for the circuit. Errata ERR053377: Use Cases for Different Message Buffer ConfigurationsThis article discusses the different use cases and configuration of the errata "ERR053377: FlexCAN: Message Buffer (MB) and Enhanced RX FIFO Filter Element (ERFFEL) Memory Corruption" Videos NXP Channel Sounding technology interfacing with Google Pixel 10 This is a demo showing the MCX W72 LOC board interacting with Google Pixel 10 phone using channel sounding Exploring Bluetooth Channel Sounding on FRDM-MCXW72 - Part 1: In this video, you will see step‑by‑step how Bluetooth® Channel Sounding works using NXP’s Rate2 distance‑estimation solution. Performing the demonstration includes a computer with VS Code, the MCUXpresso extension and toolchains installed, a FRDM‑MCXW72 development board and a smartphone running the BLE Hero application. Exploring Bluetooth Channel Sounding on FRM-MCXW72 - Part 2:  Concluding the demonstration of Bluetooth® Channel Sounding, part two of this presentation continues with a brief review of the testing setup and walks you through running board‑to‑board measurements
查看全文
Introduction DNPU Training Introduction DNPU Training   Explore the evolution of AI at the edge, from perception AI and generative AI to the emerging era of Agentic AI. This session introduces NXP’s discrete NPU strategy and examines how neural networks, transformer models, and AI agents enable intelligent decision-making for industrial, healthcare, and automation applications. Participants will gain an understanding of the technologies driving the next generation of intelligent edge systems. ARA240 DNPU Hands-On Training
查看全文
Technical Overview Hands-On Training Watch Technical Overview Hands-On Training (function() { var wrapper = document.getElementById('lia-vid-6404150259112w1280h720r217'); var videoEl = wrapper ? wrapper.querySelector('video-js') : null; if (videoEl) { if (window.videojs) { window.videojs(videoEl).ready(function() { this.on('loadedmetadata', function() { this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) { bar.setAttribute('role', 'presentation'); bar.setAttribute('aria-hidden', 'true'); }); }); }); } }})(); (view in My Videos) ARA240 DNPU Hands-On Training
查看全文