Multi Source Translation Content

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

Multi Source Translation Content

Discussions

Sort by:
RTD 使用问题 您好,在使用RTD项目时遇到了一些问题。请您看一下这些文件好吗? (1)导入演示项目后,为什么 board.txt 文件为空?编译时立即出现错误信息。我该如何编译演示项目? NXP2_0-1787586202293.pngNXP2_0-1787586202293.png NXP2_1-1787586227880.pngNXP2_1-1787586227880.png (2)当我尝试打开 .mex 文件时使用 S32DS 处理演示项目文件时,出现以下问题。请问如何解决这个问题? NXP2_0-1787585984659.png Re: RTD Usage Issues HI 导入S32K RTD的工程请点击File ->新->示例中的 S32DS 项目 RTD工程里有一个/description.txt文件需要阅读,其中提到需要在外设工具里点击更新代码按钮然后重新编译: 3.1 生成 S32 配置 在运行示例之前,需要生成一个配置。首先,在 S32 DS 的 “项目资源管理器” 视图中选择当前项目。选择 “S32 Configuration Tool” 菜单,然后点击所需的配置工具(引脚、时钟、外设等)。 点击其中任何一个都会生成所有元器件。进行所需的更改(如有),然后单击“S32 配置工具->更新代码”按钮。 最后那张图片太模糊了完全看不清楚,需要你重新上传。发图片不建议直接粘贴到帖子里,建议使用插入照片按钮插入图片或者当附件上传也行。 S32DSv3.6.x里安装RTD的方法以及如何导入工程等,可以看一下该视频:如何使用S32 Design Studio 3.6.0下载、安装和配置RTD 5.0.0 此致敬礼, Robin
View full article
MCXA185 ROM ISP UART Not Responding on Custom Pins Hello, I am working with an NXP MCXA185VLH custom board and am trying to modify the default ROM ISP UART pins through the CMPA/PFR configuration. 1. Objective The default MCXA185 ISP UART pins are: LPUART2 TX: P2_2 RX: P2_3 I want to change the ROM ISP UART to: LPUART4 TX: P3_27 RX: P3_28 I am using Secure Provisioning Tool (SPT) / SPSDK 3.10.0 and an MCU-LINK Pro as the debug probe. 2. CMPA ISP_UART_CFG configuration In the PFR Configuration tool, I configured ISP_UART_CFG as follows: UART_RX_PIN 0x7C UART_RX_FUNC_SLOT 0b0011 UART_ISP_FLEXCOM 0b0100 UART_TX_PIN 0x7B UART_TX_FUNC_SLOT 0b0011 UART_BAUD_RATE AUTO_BAUDRATE / 0b0000 According to the pin encoding, I understand: 0x7B → P3_27 0x7C → P3_28 Therefore the intended configuration is: LPUART4 TX = P3_27 RX = P3_28 Function slot = 3 Baud rate = Auto baud detection The MCXA185 documentation also lists LPUART4 as instance 4, which is why I configured the corresponding UART_ISP_FLEXCOM value. 3. CMPA generation and programming I generated the CMPA binary using SPT/SPSDK. The generated script executed successfully. The important commands/results were: ### Create CMPA page - binary ### pfr.exe export -c pfr_write_cmpa.yaml -o pfr_write_cmpa.bin Success. (CMPA binary has been generated) Then the bootloader connection was checked: blhost -t 2000 -p COM8,115200 -j -- get-property 1 0 and returned: { "command": "get-property", "response": [ 1258488320 ], "status": { "description": "0 (0x0) Success.", "value": 0 } } Then CMPA was erased: pfr.exe erase-cmpa -p COM8,115200 -f mcxa185 Result: CMPA page address on mcxa185, Revision: latest is 0x7e000 CMPA page has been erased. Then I programmed the CMPA: blhost -t 5000 -p COM8,115200 -j -- write-memory 0x0007E000 pfr_write_cmpa.bin Result: { "command": "write-memory", "response": [ 256 ], "status": { "description": "0 (0x0) Success.", "value": 0 } } Therefore, CMPA erase and write both reported success. 4. Entering ISP mode through MCU-LINK Pro I am using an MCU-LINK Pro: NXP Semiconductors MCU-LINK Pro (r0CF) CMSIS-DAP V2.241 Serial: JE3OY43UTRELI The debug mailbox starts successfully: nxpdebugmbox -i pyocd cmd -f mcxa185 start Result: Start Debug Mailbox succeeded I then force the MCU into ISP mode: nxpdebugmbox -i pyocd cmd -f mcxa185 ispmode -m 0 Result: Entering into ISP mode succeeded So the debug mailbox reports that the MCU has successfully entered ISP mode. 5. UART connection to the new ISP pins I have a USB-to-UART adapter connected to the custom board. The adapter is connected to: MCXA185 P3_27 / P3_28 The serial port is: COM27 The connection is crossed: USB-UART TX → MCXA185 P3_28 (RX) USB-UART RX ← MCXA185 P3_27 (TX) GND → GND I am testing at: 115200 baud 6. BLHOST does not respond on the new ISP UART After entering ISP mode, I run: blhost -t 10000 -p COM27,115200 -j -- get-property 1 However, I get: SpsdkNoDeviceFoundError: No devices for given interface 'uart' and parameters 'port=COM27, baudrate=115200, timeout=10000' was found. Therefore, the ROM ISP bootloader is not responding through COM27/P3_27/P3_28. I have also observed the following on the serial monitor when entering ISP mode: [RX] - 00 but I do not receive a valid BLHOST response. 7. COM27 is physically detected nxpdevscan shows the MCU-LINK Pro and related USB devices correctly, but: Scanning UART devices... Nothing found The USB-UART adapter itself is available as COM27 in Windows and is being used by the serial monitor/BLHOST. 8. Original ISP UART works Before changing the ISP UART configuration, I was able to communicate with the MCU through the original ISP UART using: blhost -t 10000 -p COM8,115200 -j -- get-property 1 which returned successfully: { "command": "get-property", "response": [ 1258488320 ], "status": { "description": "0 (0x0) Success.", "value": 0 } } This confirms that: The MCU is functional. ROM ISP is functional. BLHOST/SPSDK is functional. The USB-UART adapter and serial communication setup work. The problem appears after changing the ISP UART configuration to P3_27/P3_28. 9. Debug memory access issue I also attempted to verify the CMPA contents directly through the MCU-LINK Pro. CMPA is located at: 0x0007E000 I used: nxpdebugmbox -i pyocd mem-tool read-memory -f mcxa185 -a 0x0007E000 -c 0x100 -h but received: SPSDKAppError: SPSDK: The memory access port is not found! I also tried: nxpdebugmbox -i pyocd mem-tool test-connection -f mcxa185 which returned: The test connection ends NOT successfully. I tried enabling recovery reset: nxpdebugmbox -i pyocd -o enable_recovery_reset=True mem-tool read-memory -f mcxa185 -a 0x0007E000 -c 0x100 -h but received the same: The memory access port is not found! However, the debug mailbox itself can still be started: Start Debug Mailbox succeeded and ISP mode can be entered: Entering into ISP mode succeeded 10. SPT connection issue When I tried to use the PFR Configuration window again, it showed: PFR Configuration, MCXA185, COM8[baud=115200] and reported: Connection problem. Check the connection dialog for configuration. Failed to open UART port with: Could not open port 'COM8'. Access denied. This appears to be a separate COM-port access issue because COM8 was already being used by another application/process. PS. Ive also configured the ISP_MISC_CFG : ISP_UART_CUST in the secure provisioning tool and done a power cycle too. Literally I've done everything that i could find via documentation and even support and there is no chance for silly mistakes from my side. Please help me resolve my issue. Thank you. MCXA Re: MCXA185 ROM ISP UART Not Responding on Custom Pins Hello @Alice_Yang , I have already performed a full power reset after programming the CMPA. I also tried entering ISP mode using the ISP pin as suggested. However, the MCXA185 still does not respond through the configured ISP UART, and blhost reports that the device does not respond to the PING. Thank you. Regards Uday Re: MCXA185 ROM ISP UART Not Responding on Custom Pins Hi @udaysinghg70  Please ensure that a full power reset is performed after programming the CMPA, and then try entering ISP mode using the ISP pin.   Thank you.   BR Alice Re: MCXA185 ROM ISP UART Not Responding on Custom Pins Hi @Alice_Yang  Yes. When these two pins are configured as a standard UART interface in the application, UART transmission and reception work normally. Regards, Uday Re: MCXA185 ROM ISP UART Not Responding on Custom Pins Hi @udaysinghg70  If these two pins are configured as a standard UART interface in the application, can the UART transmit and receive data normally?   BR Alice
View full article
RTD(すぐに飲める飲料)の使用上の問題点 こんにちは。RTDプロジェクトを使用する際にいくつか問題が発生しています。見ていただけますか? (1)デモプロジェクトをインポートした後、board.txt ファイルが空になるのはなぜですか?コンパイル時に、すぐにエラーメッセージが表示されました。デモプロジェクトはどうやってコンパイルすればいいですか? NXP2_0-1787586202293.pngNXP2_0-1787586202293.png NXP2_1-1787586227880.pngNXP2_1-1787586227880.png (2).mexファイルを開こうとしたときS32DSを使用したデモプロジェクトのファイルで、以下の問題が発生しました。どうやって直せばいいのか教えてもらえますか? NXP2_0-1787585984659.png Re: RTD Usage Issues ハイ S32K RTD の工程ポイントファイル ->新規 ->例からの S32DS プロジェクト RTD 工程里に/description.txt ファイルが必要です阅读、その中には外部設定ツールのサリポイントでコードを更新する必要があることが指摘されています。 3.1 S32構成の生成 例を実行する前に、設定を生成する必要があります。まず、S32 DSのプロジェクト・エクスプローラ・ビューに移動し、現在のプロジェクトを選択します。[S32 Configuration Tool(S32設定ツール)] メニューを選択し、目的の設定ツール(ピン、クロック、ペリフェラルなど)をクリックします。 いずれかをクリックすると、すべてのコンポーネントが生成されます。必要な変更(もしあれば)を行い、「S32構成ツール」→「コードの更新」ボタンをクリックしてください。 最後に、写真は完全に汚れているため、再度転送する必要があります。写真の送信は、直接チャプター サイトに送信されません。写真の挿入を使用して写真を挿入するか、添付ファイル上でも転送されます。 S32DSv3.6.x里安装RTD的方法以及如何导入工程等,可以看一下该视频:How To Download, install and Configuration the RTD 5.0.0 with S32 Design Studio 3.6.0 よろしくお願いいたします ロビン
View full article
S32K3用のCrypto_43_HSE NVMカタログのサンプルはありますか? 最新のRTD 7.0.1 P02パッケージ(S32K3プラットフォーム用)には、RAMカタログの使用(AES暗号化/復号)を示すCrypto_43_HSE例があります。 HSE NVMカタログの使用例を示すサンプルはありますか?MCAL-NVMドライバーを追加した後、NvMBlockDescriptorコンテナ内でNvMNvBlockLengthとNvMRamBlockDataAddressフィールドをどう書くのか全くわかりません。(キープロビジョニング機能を実装したいです) Re: Is there Crypto_43_HSE NVM catalog example for S32K3? こんにちは、 @Pippenさん もしあなたのユースケースがHSEに鍵をプロビジョニングすることなら、NvMは必須ではありません。HSEはプロビジョニング済み鍵を独自の安全な非揮発性メモリに保存し、Crypto_43_HSEドライバはこれらの鍵を管理するためにHSEサービスを使用します。このシナリオでは、鍵の保存はHSE自体によって処理されるため、HSEの鍵保存のためにNvMのブロック構成は必要ありません。HSEは安全なフラッシュに独占的にアクセスでき、ユーザーはこのフラッシュに直接アクセスできません。 HSE RAMキーとHSE NVMキーをインポートする手順は全く同じです。API Crypto_43_HSE_KeyElementSetとCrypto_43_HSE_KeySetValidを引き続き使用します。唯一の違いはキーIDです。それは、RAMカタログまたはNVMカタログ内のキーのキーIDのいずれかです。 よろしくお願いいたします。 ルーカス
View full article
Is there Crypto_43_HSE NVM catalog example for S32K3? In the latest RTD 7.0.1 P02 package for S32K3 platform, there is a Crypto_43_HSE example to demonstrate the RAM catalog usage (AES encrypt/decrypt). Is there any example to demonstrate HSE NVM catalog usage? I have no idea how to write the NvMNvBlockLength and NvMRamBlockDataAddress fields in NvMBlockDescriptor container after I added MCAL-NVM driver. (I'd like to implement Key Provisioning feature) Re: Is there Crypto_43_HSE NVM catalog example for S32K3? Hi @Pippen  If your use case is provisioning keys into HSE, then NvM is not required. HSE stores provisioned keys in its own secure non-volatile memory, and the Crypto_43_HSE driver uses HSE services to manage these keys. In this scenario, key storage is handled by HSE itself and no NvM block configuration is needed for HSE key storage. HSE has exclusive access to secure flash, users can’t access this flash directly. The procedure to import HSE RAM key and HSE NVM key is exactly the same – you are still using API Crypto_43_HSE_KeyElementSet and Crypto_43_HSE_KeySetValid. The only difference is key ID. It’s either key ID of a key in RAM catalog or in NVM catalog. Regards, Lukas
View full article
是否有适用于 S32K3 的 Crypto_43_HSE NVM 目录示例? 在最新的 RTD 7.0.1 P02 软件包中,针对 S32K3 平台,有一个 Crypto_43_HSE 示例,用于演示 RAM 目录的使用(AES 加密/解密)。 是否有示例可以演示 HSE NVM 目录的使用方法?添加 MCAL-NVM 驱动程序后,我不知道如何在 NvMBlockDescriptor 容器中写入 NvMNvBlockLength 和 NvMRamBlockDataAddress 字段。(我想实现密钥配置功能) Re: Is there Crypto_43_HSE NVM catalog example for S32K3? 嗨@Pippen 如果您的用例是将密钥配置到 HSE 中,则不需要 NvM。HSE 将已配置的密钥存储在其自身的安全非易失性存储器中,Crypto_43_HSE 驱动程序使用 HSE 服务来管理这些密钥。在这种情况下,密钥存储由 HSE 本身处理,HSE 密钥存储不需要 NvM 块配置。HSE拥有安全闪存的独家访问权限,用户无法直接访问该闪存。 导入 HSE RAM 密钥和 HSE NVM 密钥的步骤完全相同——您仍然使用 API 函数 Crypto_43_HSE_KeyElementSet 和 Crypto_43_HSE_KeySetValid。唯一的区别是密钥 ID。它要么是 RAM 目录中某个键的键 ID,要么是 NVM 目录中某个键的键 ID。 此致, Lukas
View full article
RTD Usage Issues Hello, there are some issues when using the RTD project. Could you please take a look at them? (1)After importing the demo project, why is the board.txt file empty? When compiling, there was an immediate error message. How can I compile the demo project? NXP2_0-1787586202293.pngNXP2_0-1787586202293.png NXP2_1-1787586227880.pngNXP2_1-1787586227880.png (2)When I tried to open the .mex file of the demo project using S32DS, the following problem occurred. Could you please tell me how to fix it? NXP2_0-1787585984659.png Re: RTD Usage Issues Hi 导入S32K RTD的工程请点击File -> New -> S32DS Project From Example RTD工程里有个/description.txt文件需要阅读,其中就有提到需要在外设工具里点击Update Code按钮然后再编译: 3.1 Generating the S32 configuration Before running the example a configuration needs to be generated. First go to Project Explorer View in S32 DS and select the current project. Select the "S32 Configuration Tool" menu then click on the desired configuration tool (Pins, Cocks, Peripherals etc...). Clicking on any one of those will generate all the components. Make the desired changes (if any) then click on the "S32 Configuration Tool->Update Code" button. 最后那张图片太模糊了完全看不清,需要你重新上传。发图片不建议直接黏贴到帖子里,建议使用 Insert Photos 按钮插入图片或者当附件上传也行。 S32DSv3.6.x里安装RTD的方法以及如何导入工程等,可以看一下该视频:How To Download, Install and Configure the RTD 5.0.0 with S32 Design Studio 3.6.0 Best Regards, Robin
View full article
MCXA185 ROM ISP UART 在自定义引脚上无响应 你好, 我正在使用 NXP MCXA185VLH 定制板,并尝试通过 CMPA/PFR 配置修改默认 ROM ISP UART 引脚。 1. 目标 MCXA185 ISP UART 的默认引脚为: LPUART2 TX:P2_2 RX:P2_3 我想将 ROM ISP UART 更改为: LPUART4 TX:P3_27 RX:P3_28 我使用的是 Secure Provisioning Tool (SPT) / SPSDK 3.10.0 和 MCU-LINK Pro 作为调试探针。 2. CMPA ISP_UART_CFG 配置 在 PFR 配置工具中,我按如下方式配置了 ISP_UART_CFG: UART_RX_PIN 0x7C UART_RX_FUNC_SLOT 0b0011 UART_ISP_FLEXCOM 0b0100 UART_TX_PIN 0x7B UART_TX_FUNC_SLOT 0b0011 UART_BAUD_RATE AUTO_BAUDRATE / 0b0000 根据PIN码编码,我理解如下: 0x7B → P3_27 0x7C → P3_28 因此,预期的配置是: LPUART4 TX = P3_27 RX = P3_28 功能槽 = 3 波特率 = 自动波特率检测 MCXA185 文档还将 LPUART4 列为实例 4,因此我配置了相应的 UART_ISP_FLEXCOM 值。 3. CMPA生成和编程 我使用 SPT/SPSDK 生成了 CMPA 二进制文件。 生成的脚本已成功执行。 重要的命令/结果如下: # ## Create CMPA page - binary ## # pfr.exe export -c pfr_write_cmpa.yaml -o pfr_write_cmpa.bin 成功。(已生成 CMPA 二进制文件) 然后检查了引导加载程序连接: blhost -t 2000 -p COM8,115200 -j --get-property 1 0 然后返回: { "命令": "get-property", “回复”: [ 1258488320 ], “地位”: { 描述: 0 (0x0) 成功。 值:0 } } 然后 CMPA 就被抹去了: pfr.exe erase-cmpa -p COM8,115200 -f mcxa185 结果: CMPA 页面地址(mcxa185),版本:最新版本为 0x7e000 CMPA页面已被删除。 然后我编写了 CMPA 程序: blhost -t 5000 -p COM8,115200 -j -- write-memory 0x0007E000 pfr_write_cmpa.bin 结果: { “命令”:“写入内存”, “回复”: [ 256 ], “地位”: { 描述: 0 (0x0) 成功。 值:0 } } 因此,CMPA 会擦除并重新写入报告的成功信息。 4. 通过 MCU-LINK Pro 进入 ISP 模式 我使用的是MCU-LINK Pro: 恩智浦半导体 MCU-LINK Pro (r0CF) CMSIS-DAP V2.241 序列号:JE3OY43UTRELI 调试邮箱已成功启动: nxpdebugmbox -i pyocd cmd -f mcxa185 start 结果: 启动调试邮箱成功 然后我强制MCU进入ISP模式: nxpdebugmbox -i pyocd cmd -f mcxa185 ispmode -m 0 结果: 成功进入ISP模式 因此,调试邮箱报告称 MCU 已成功进入 ISP 模式。 5. 将UART连接到新的ISP引脚 我有一个 USB 转 UART 适配器连接到定制板上。 适配器连接到: MCXA185 P3_27 / P3_28 串口是: COM27 连接断开了: USB-UART TX → MCXA185 P3_28 (RX) USB-UART RX ← MCXA185 P3_27 (TX) 接地 → 接地 我正在以下位置进行测试: 115200 波特 6. BLHOST 在新的 ISP UART 上没有响应 进入ISP模式后,我运行: blhost -t 10000 -p COM27,115200 -j --get-property 1 但是,我得到的是: SpsdkNoDeviceFoundError: 未找到具有给定接口“uart”和参数“port=COM27,baudrate=115200,timeout=10000”的设备。 因此,ROM ISP引导加载程序没有通过COM27/P3_27/P3_28响应。 进入ISP模式后,我在串口监视器上还观察到以下情况: [RX] - 00 但我没有收到有效的 BLHOST 响应。 7. 已检测到 COM27 的物理信号。 nxpdevscan 正确显示了 MCU-LINK Pro 和相关的 USB 设备,但是: 正在扫描 UART 设备……未发现任何设备 USB-UART 适配器本身在 Windows 中以 COM27 端口显示,并被串行监视器/BLHOST 程序使用。 8. 原ISP UART正常工作 在更改 ISP UART 配置之前,我可以通过原有的 ISP UART 与 MCU 通信,方法如下: blhost -t 10000 -p COM8,115200 -j --get-property 1 返回结果成功: { "命令": "get-property", “回复”: [ 1258488320 ], “地位”: { 描述: 0 (0x0) 成功。 值:0 } } 这证实了: MCU功能正常。 ROM ISP功能正常。 BLHOST/SPSDK 功能正常。 USB-UART适配器和串口通信设置正常。 将 ISP UART 配置更改为 P3_27/P3_28 后,问题就出现了。 9. 调试内存访问问题 我还尝试直接通过 MCU-LINK Pro 验证 CMPA 内容。 CMPA的地址是: 0x0007E000 我使用了: nxpdebugmbox -i pyocd mem-tool read-memory -f mcxa185 -a 0x0007E000 -c 0x100 -h 但收到: SPSDKAppError:SPSDK:找不到内存访问端口! 我还尝试了: nxpdebugmbox -i pyocd mem-tool test-connection -f mcxa185 返回结果: 测试连接未成功结束。 我尝试启用恢复RESET功能: nxpdebugmbox -i pyocd -o enable_recovery_reset=True mem-tool read-memory -f mcxa185 -a 0x0007E000 -c 0x100 -h 但收到的却是同样的内容: 未找到内存访问端口! 但是,调试邮箱本身仍然可以启动: 启动调试邮箱成功 可以进入ISP模式: 成功进入ISP模式 10. SPT连接问题 当我再次尝试使用 PFR 配置窗口时,它显示: PFR 配置,MCXA185,COM8[波特率=115200] 并报道: 连接出现问题。请检查连接对话框中的配置信息。 无法使用以下命令打开 UART 端口: 无法打开端口“COM8”。访问被拒绝。 这似乎是一个独立的 COM 端口访问问题,因为 COM8 端口已经被另一个应用程序/进程使用。 附言我已经在安全配置工具中配置了 ISP_MISC_CFG : ISP_UART_CUST,并且重启了设备。我真的已经按照文档和技术支持提供的所有步骤操作了,不可能是我犯了什么低级错误。请帮我解决这个问题。 谢谢! MCXA Re: MCXA185 ROM ISP UART Not Responding on Custom Pins 你好@Alice_Yang , 我已经对 CMPA 进行编程后执行了完全断电重置。 我还尝试按照建议使用 ISP 引脚进入 ISP 模式。但是,MCXA185 仍然无法通过配置的 ISP UART 响应, blhost也报告该设备对 PING 请求没有响应。 谢谢! 此致 乌代 Re: MCXA185 ROM ISP UART Not Responding on Custom Pins 你好@udaysinghg70 请确保在对 CMPA 进行编程后执行完全断电复位,然后尝试使用 ISP 引脚进入 ISP 模式。   谢谢!   BR 爱丽丝 Re: MCXA185 ROM ISP UART Not Responding on Custom Pins 你好@udaysinghg70 如果将这两个引脚配置为应用程序中的标准 UART 接口,UART 能否正常收发数据?   BR 爱丽丝 Re: MCXA185 ROM ISP UART Not Responding on Custom Pins 嗨@Alice_Yang 是的。当这两个引脚在应用程序中配置为标准 UART 接口时,UART 发送和接收功能正常。 此致, 乌代
View full article
7 inch DSI LCD ( 800*480 ) integration with imx8M plus Hello Team, I am attempting to bring up a Waveshare 7-inch DSI LCD on a custom iMX8M Plus board (Kernel 6.18.20_2.0.0). The I2C bus detects the panel board, and touch functionality works via evtest. CONFIG_DRM_WAVESHARE_BRIDGE=y binds successfully. However, the display remains blank. Adjusting pixel clock frequencies has not resolved the issue. I have attached the DTS snippet and the kernel logs for reference. Display Details: https://www.waveshare.com/wiki/7inch_DSI_LCD?srsltid=AfmBOorUskdbY2AqupblCpMEQNVBolOXs40ytjhcxKml0IZccg4CI8Ni Any further troubleshooting steps appreciated. Thanks in advance Graphics & Display i.MX 8 Family | i.MX 8QuadMax (8QM) | 8QuadPlus Re: 7 inch DSI LCD ( 800*480 ) integration with imx8M plus it seems the LCD need 5V 500mA. Not sure the custom iMX8M Plus board can provide enough or not... Re: 7 inch DSI LCD ( 800*480 ) integration with imx8M plus Hii,  You can see the attached log below Re: 7 inch DSI LCD ( 800*480 ) integration with imx8M plus Hi, Please share the clocks with below command. cat /sys/kernel/debug/clk/clk_summary Best Regards, Zhiming
View full article
7インチDSI LCD(800*480)とimx8M plusの統合 こんにちは、チームの皆さん、 カスタムiMX8M Plusボード(カーネル6.18.20_2.0.0)上で、Waveshare製7インチDSI LCDを起動しようとしています。 I2Cバスはパネル基板を検出し、タッチ機能はEVTESTで動作します。CONFIG_DRM_WAVESHARE_BRIDGE=yは正常にバインドされます。しかし、ディスプレイは真っ暗なままです。 ピクセルクロック周波数を調整しても問題は解決しませんでした。参考のために、DTSのコードスニペットとカーネルログを添付しました。 詳細表示: https://www.waveshare.com/wiki/7inch_DSI_LCD?srsltid=AfmBOorUskdbY2AqupblCpMEQNVBolOXs40ytjhcxKml0IZccg4CI8Ni 他にトラブルシューティングの手順があれば教えていただけると助かります。 前もって感謝します グラフィックスとディスプレイ i.MX 8ファミリ | i.MX 8QuadMax (8QM) | 8QuadPlus Re: 7 inch DSI LCD ( 800*480 ) integration with imx8M plus LCDは5V 500mAが必要なようです。カスタムのiMX8M Plusボードで十分な支援が得られるかどうかはわかりません... Re: 7 inch DSI LCD ( 800*480 ) integration with imx8M plus こんにちは、 以下に添付のログをご覧ください Re: 7 inch DSI LCD ( 800*480 ) integration with imx8M plus こんにちは、 以下のコマンドを使用して時計を共有してください。 cat /sys/kernel/debug/clk/clk_summary よろしくお願いします、 志明
View full article
30 Pin Pin configuration of CWH-CTP-BASE-HE Code warrior JTAG what is the actual 30 Pin Pin configuration of CWH-CTP-BASE-H Code warrior JTAG. I want to connect code warrior debugger with J70A-212-025-161-JC connector. Please provide me the actual pin configuration (30 pin) of the Code warrior JTAG.  Re: 30 Pin Pin configuration of CWH-CTP-BASE-HE Code warrior JTAG Please kindly find the CWH-CTP-BASE-H schematcis https://www.nxp.com/design/design-center/development-boards-and-designs/CW_TAP Also there are good references for the CWH-CTP-BASE-H definition: https://www.nxp.com/design/design-center/development-boards-and-designs/CWH-CTP-CTX10-YE?#design-resources https://www.nxp.com/webapp/Download?colCode=CWH-CTP-COP-YE-SCH&appType=license These references should provide the 30-pin JTAG connector pin assignments required to interface the CodeWarrior debugger Thanks
View full article
IEEE 802.15.4 我希望使用 IEEE 802.15.4 将多个设备连接在一起,并将数据存储在计算机/服务器中,并允许智能手机配置和查看所述设备的实时数据。 目前使用的是 NXP 微处理器,并考虑未来可能转而使用 STM32 微处理器。 使用SoC还是只使用收发器更好?如果我想连接到 iOS/Android 设备,我需要一个能够同时支持 BLE 和 IEEE 802.15.4 的收发器,对吗? 这里有人实施过 IEEE 802.15.4 吗?如果有,你们使用的是哪个规范,为什么选择它?ZigBee、Thread、6LoWPAN 等。 Re: IEEE 802.15.4 你好,   希望你一切都好。对于 802.15.4 应用,您可以查看我们的 Thread 和 Zigbee 产品。   片上系统 (SoC) 与收发器 对于需要最大限度降低物料清单成本和电路板空间的多设备网络而言,片上系统 (SoC) 通常是更好的选择。NXP 提供集成无线 MCU,将应用处理器和 802.15.4 无线电集成在单个芯片中,无需单独的主机 MCU + 收发器组合。如果您已经拥有主机 MCU,并且只需要为其添加无线电功能,那么使用独立收发器会更有意义。   连接到 iOS/Android 是的,你说得对,要在通过 BLE 直接与智能手机通信的同时运行 802.15.4 网络,你需要一个同时支持这两种无线电的芯片。   恩智浦半导体有多款多协议SoC芯片可以实现这一功能: MCX W72 :在单个 Cortex-M33 芯片上支持 OpenThread、Zigbee 和 Bluetooth LE 6.0。 RW612 :三频:Wi-Fi 6、蓝牙 LE 5.3 和 IEEE 802.15.4,如果您还需要 Wi-Fi 用于服务器/云网关端,则它是理想之选。   希望这能帮到你!   此致, 里卡多
View full article
IEEE 802.15.4 I’m looking to use IEEE 802.15.4 to connect a multitude of devices together and store the data in a computer/server and allow for smartphone configuration and viewing of real time data of said devices. Currently working with NXP micro and looking to possibly switching to STM32 micros. Is it better to use an SoC or just a transceiver? If I wanted to connect to an iOS/Android device I would need a transceiver capable of doing both BLE and IEEE 802.15.4 correct? Has anyone here implemented IEEE 802.15.4 and if so what specification did you use and why? ZigBee, Thread, 6LoWPAN, etc. Re: IEEE 802.15.4 Hello,   Hope you are doing well. For 802.15.4 applications you can check our Thread and Zigbee products.   SoC vs. Transceiver For a multi-device network where you want to minimize BOM cost and board space, an SoC (System-on-Chip) is generally the better choice. NXP offers integrated wireless MCUs that combine the application processor and the 802.15.4 radio in a single chip, removing the need for a separate host MCU + transceiver combination. A standalone transceiver makes more sense if you already have a host MCU and only need to add radio capability to it.   Connecting to iOS/Android Yes, you are correct, to communicate directly with a smartphone over BLE while also running an 802.15.4 network, you need a chip that supports both radios simultaneously.   NXP has several multi-protocol SoCs that do exactly this: MCX W72: Supports OpenThread, Zigbee, and Bluetooth LE 6.0 on a single Cortex-M33 chip. RW612: Tri-radio: Wi-Fi 6, Bluetooth LE 5.3, and IEEE 802.15.4, ideal if you also need Wi-Fi for the server/cloud gateway side.   Hope this helps!   Regards, Ricardo
View full article
CWH-CTP-BASE-HE Code warrior JTAGの30ピンピン構成 CWH-CTP-BASE-H Code Warrior JTAGの実際の30ピン構成は何ですか?CodeWarriorデバッガーをJ70A-212-025-161-JCコネクタに接続したいです。Code Warrior JTAGの実際のピン配置(30ピン)を教えてください。 Re: 30 Pin Pin configuration of CWH-CTP-BASE-HE Code warrior JTAG CWH-CTP-BASE-Hの回路図を添付いたします。 https://www.nxp.com/design/design-center/development-boards-and-designs/CW_TAP CWH-CTP-BASE-Hの定義に関する優れた参考資料もいくつかあります。 https://www.nxp.com/design/design-center/development-boards-and-designs/CWH-CTP-CTX10-YE?#design-resources https://www.nxp.com/webapp/Download?colCode=CWH-CTP-COP-YE-SCH&appType=license これらの参照は、CodeWarriorデバッガとインターフェースするために必要な30ピンJTAGコネクタのピン割り当てを提供するはずです よろしくお願いします。
View full article
IEEE 802.15.4 IEEE 802.15.4を使用して多数のデバイスを接続し、データをコンピュータ/サーバーに保存し、スマートフォンからこれらのデバイスのリアルタイムデータを設定および表示できるようにしたいと考えています。 現在はNXP製のマイクロコントローラを使用していますが、STM32マイクロコントローラへの切り替えを検討しています。 SoCを使うのとトランシーバを使うのと、どちらが良いのでしょうか?iOSやAndroidデバイスに接続したい場合、BLEとIEEE 802.15.4の両方に対応しられるトランシーバが必要ですよね? ここでIEEE 802.15.4を実装した方はいらっしゃいますか?もし実装しているなら、どの仕様を使い、その理由も教えてください。ZigBee、Thread、6LoWPANなどです。 Re: IEEE 802.15.4 こんにちは、   あなたの調子が良いといいのですが。802.15.4アプリケーションについては、ThreadおよびZigbee製品をご覧ください。   SoCとトランシーバの比較 部品コストと基板スペースを最小限に抑えたいマルチデバイスネットワークの場合、一般的にSoC(システムオンチップ)の方が優れた選択肢となります。NXPは、アプリケーションプロセッサと802.15.4無線を1つのチップに統合した統合無線MCUを提供しており、別途ホストMCU+トランシーバの組み合わせを不要にしています。すでにホストMCUを持っていて、無線機能だけを追加すれば必要な場合は、スタンドアロンのトランシーバの方が理にかなっています。   iOS/Androidへの接続 はい、その通りです。802.15.4ネットワークを使いながらBLE経由でスマートフォンと直接通信するには、両方の無線を同時にサポートするチップが必要です。   NXPは、まさにこのような機能を備えたマルチプロトコルSoCをいくつか提供しています。 MCX W72:1枚のCortex-M33チップ上でOpenThread、Zigbee、Bluetooth LE 6.0をサポートします。 RW612:トライラジオ:Wi-Fi 6、Bluetooth LE 5.3、IEEE 802.15.4。サーバーやクラウドゲートウェイ側にもWi-Fiが必要な場合に最適です。   お役に立てば幸いです!   よろしくお願いいたします。 リカルド
View full article
CWH-CTP-BASE-HE 的 30 引脚引脚配置,Code Warrior JTAG CWH-CTP-BASE-H Code warrior JTAG 的实际 30 引脚配置是什么?我想用 J70A-212-025-161-JC 连接器连接 Code Warrior 调试器。请提供Code Warrior JTAG接口的实际引脚配置(30引脚)。 Re: 30 Pin Pin configuration of CWH-CTP-BASE-HE Code warrior JTAG 请查阅 CWH-CTP-BASE-H 原理图。 https://www.nxp.com/design/design-center/development-boards-and-designs/CW_TAP 此外,还有一些关于 CWH-CTP-BASE-H 定义的优秀参考资料: https://www.nxp.com/design/design-center/development-boards-and-designs/CWH-CTP-CTX10-YE?#design-resources https://www.nxp.com/webapp/Download?colCode=CWH-CTP-COP-YE-SCH&appType=license 这些参考资料应该提供与 CodeWarrior 调试器连接所需的 30 针 JTAG 连接器引脚分配。 谢谢!
View full article
IPMSM 的 FOC 请问这里有没有人有使用TI C2000单片机从零开始开发IPMSM的FOC的经验?我正在研究使用 0 d 轴和 MTPA 控制的 30W IPMSM 电机控制。如果有相关经验或者想和我合作,请私信我。我把它当作兼职来做。 Re: FOC for IPMSM 你好, 如果您想考虑改用 NXP 产品,NXP 提供指南,可以帮助您从头开始运行电机控制/FOC 示例; 我们提供了一个 MCUXpresso SDK,其中包含多个针对各种 NXP 器件的电机控制示例。 主要面向三相永磁同步电机和无刷直流电机。 MCUXpresso 电机控制 SDK | 恩智浦半导体 在应用程序代码中心,有示例及其应用笔记信息指南,解释了应用此 SDK 和其他不同功能的逐步说明。 此外,无传感器永磁同步电机磁场定向控制的初始信息可以帮助您从头开始了解永磁同步电机磁场定向控制,作为入门介绍。 如果您有兴趣使用恩智浦半导体(NXP)的设备进行开发,请告诉我。 此致敬礼,路易斯
View full article
s32ds许可证 我们公司使用的是 s32ds 3.5 版本的 IDE。此版本的IDE需要许可证。但是,我们在官方网站上找不到 IDE 3.5 版本的注册链接。我们该如何解决这个问题? 222.png222.png222.png Re: s32ds-lisence 对于我的另一个帐户,在访问此界面时,没有 3.5 下载包或许可证。我有两台电脑。当前帐户有许可证,但是当我在另一台计算机上访问此界面时,我找不到 3.5 下载包和许可证。 Re: s32ds-lisence 嗨@iiiddd 请尝试使用此链接,应该可以: https://www.nxp.com/webapp/swlicensing/sso/downloadSoftware.sp?catid=S32DS-3-5 此致, Lukas
View full article
我该如何找到 如何使用这个社区
View full article
电机控制评估套件 您好,我是NXP的新员工。 我能否为MCSPTR2AK396开发套件开发并编写基于C语言的自定义电机控制代码? 如果可以,能否列出该工具包中包含的SW工具链? 谢谢 Re: Motor control evaluation kit 你好, 是的,可以。 MCSPTR2AK396 套件专为 S32K396 上的电机控制应用开发而设计,NXP 提供参考软件作为 ANSI C 源代码,适用于非 AUTOSAR 应用,使其适合开发和用您自己的自定义 C 代码替换部分控制算法。 典型的软件工具链: S32 设计工作室 (S32DS) – 集成开发环境 (IDE)、编译器、调试器 RTD(实时驱动程序)– S32K3 外围设备驱动程序 S32 配置工具 (S32CT) – 引脚/时钟/外设配置 AMMCLib – 电机控制算法库 FreeMASTER – 运行时监控和调试 MCAT – 运动参数识别与调优 顺祝商祺! Peter
View full article