Multi Source Translation Content

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Multi Source Translation Content

ディスカッション

ソート順:
S32K144 MCU config issue Hello NXP Support Team, I am working on an S32K144 project using EB tresos / NXP MCAL AUTOSAR 4.2.2. After generating and flashing the MCU configuration, the board stopped responding to the debugger. Issue Summary: After flashing the generated MCU configuration: The board is no longer detected by the debugger. The debug connection fails. The LED remains continuously ON. The board does not seem to recover even after trying debugger connection again. I suspect the MCU may be stuck in reset, clock failure, PLL lock failure, or a clock monitor reset loop. Could you please help verify my EB tresos .xdm configuration and confirm: Whether the SOSC configuration is correct for S32K144. Whether the SPLL configuration is valid. Whether enabling SOSC/SPLL clock monitor reset can cause this kind of unrecoverable debug issue. Whether my RUN/SYS/CORE/BUS/FLASH clock reference configuration is correct. What exact EB tresos settings should be used for a safe recovery configuration using only FIRC 48 MHz. How to recover the board if debug access is failing. I tried reconnecting the debugger, but the board is not recovering. Please suggest the exact recovery procedure for S32K144, such as: -Connect under reset -Mass erase -Recover secured device -Disable user code execution during connect -PEMicro / OpenSDA / J-Link recovery steps Regards, Aishwarya
記事全体を表示
Edgefast OpenはSDKで利用できません SDKバージョン26.09.00以降、EdgeFast Bluetooth PALは廃止される予定なので、テストを始めて新しいEdgeFast Openに切り替えたいと思っています。 ドキュメントに記載されている通り: https://mcuxpresso.nxp.com/mcuxsdk/latest/html/middleware/edgefast_open/docs/MCUXSDKEFOPENUG/topics/demo.html#run-a-demo-application-using-mcuxpresso-ide MCUXPresso IDEを使って新しいライブラリをテストできるようだったので、MCUXpresso SDK BuilderからRT685、RT1060、RT1170の最後の26.06 SDKをダウンロードしてサンプルをインポートしようとしましたが、「open」ライブラリを使う例は見つかりませんでした。そのSDKにはPAL版のみが含まれているようです。 また、GitHubからリポジトリをダウンロードして、MCUXPresso for VSCでもテストしました。ソースファイルとマニフェストファイルにはライブラリが存在しているのですが、ボードのサンプルには含まれていません。 新しいEdgeFastライブラリをどうやってテストできますか? よろしくお願いいたします。 Re: Edgefast Open not available on SDK 私はまさにそこから始めた。 問題は以下の通りです: - MCUXPresso用に生成されたSDKには、ライブラリやサンプルの痕跡は一切含まれていません。 ライブラリとサンプルはGitHubで公開されています。リポジトリをクローンしてファイルは見られますが、このライブラリを使う例をインポートすることはまだできません。 Re: Edgefast Open not available on SDK こんにちは、 mcux SDK mcuxsdk\middleware\edgefast_openのディレクトリをご覧ください。 よろしくお願いいたします。 ダニエル。 Re: Edgefast Open not available on SDK リポジトリからSDKを取得する必要があります。SDKビルダーからではありません。 その後、以下のように例を作成できます。 C:\mcux_26_06\mcuxsdk\mcuxsdk>west build -b evkbmimxrt1170 middleware/edgefast_open/examples/peripheral_ht --build-dir build_peripheral_ht --pristine -- -Dcore_id=cm7 次に、フラッシュするには: C:\mcux_26_06\mcuxsdk\mcuxsdk>west flash --build-dir build_peripheral_ht 出力: BLE Peripheral HT demo start... Bluetooth initialized Advertising successfully started よろしくお願いいたします。 ダニエル。
記事全体を表示
S32K144串口通信接收的数据提不出 在做一个迪文屏和s32k的单片机串口通信联动的功能,触摸屏发送数据单片机接收并进行判断时,想通过提取数据第9位进行判 断并实现不同的can数据发送,但无法成功提取数据,希望各位前辈们指点一下 Re: S32K144串口通信接收的数据提不出 你好@ffdsg , 我没有使用 DWIN 触摸屏的经验,但是通过快速搜索,似乎帧结构不使用“\n”标记表示帧结束,而是发送前两个标头(5A 和 A5),然后是帧的长度(06)。 所以,你很可能可以通过编辑 UART 回调函数,用第三个字节停止接收数据,就像这样: void LPUART1_RX_ISR(void *driverState, uart_event_t event, void *userData) { (void)driverState; (void)userData; if (event == UART_EVENT_RX_FULL) { bufferIdx++; if (bufferIdx >= 3) { uint8_t frameLen = buffer[2]; /* number of bytes after length byte */ uint8_t totalLen = 3 + frameLen; /* header(2) + length(1) + payload */ if (bufferIdx >= totalLen) { /* Full frame received */ memcpy(rxdata, buffer, totalLen); keyNum = rxdata[8]; /* 9th byte*/ memset(buffer, 0, sizeof(buffer)); bufferIdx = 0; trigger = 1; LPUART_DRV_ReceiveData(INST_LPUART1, buffer, 1); return; } } LPUART_DRV_SetRxBuffer(INST_LPUART1, &buffer[bufferIdx], 1U); } } 这样可以确保你始终读取第 9 个字节。 另外,在你的例程中,你注释掉了以下这行代码: //if (keyNum==0X01) { 这意味着无论第 9 个字节是什么,CAN 消息始终保持不变。 遗憾的是,DWIN 触摸屏是第三方设备,不在我们的支持范围内,我们不提供任何与该硬件相关的程序。您需要在自己的环境中实施并测试这些更改。 此致, 朱利安
記事全体を表示
i.MX95におけるUSXGMIIマルチレート こんにちは、 i.MX95に以下のイーサネット速度をサポートできるイーサネットポートを実装できるかどうかを評価しようとしています。 10GBASE-T 5GBASE-T 2.5GBASE-T 1000BASE-T 100BASE-TX 10BASE-Te 一般的に、デザイン上に10Gbit対応のイーサネットPHYを設置し、USXGMIIまたはXFIのいずれかのインターフェースを通じてi.MX95イーサネットコントローラに接続する必要があります 私たちの理解では、USXGMIIインターフェースは理論上マルチレートインターフェースであり、1リンクで10Gbitから10bitまでのあらゆる速度を実現できます。 これに対し、XFIインターフェースは単一レートのインターフェースで、10Gbitしか対応できません。 i.MX95のリファレンスマニュアル(例:)セクション104.2、表621)i.MX95はXFIおよび「10G-USXGMII」の両方をサポートしています。最初は、私たちが望むUSXGMIIインターフェースがサポートされているように見えます。 しかし、いくつか私たちを困惑させる点があります。 1.「10G-USXGMII」という宣言は、理論上はインターフェースがUSXGMIIリンクであることを意味するかもしれませんが、実際には10Gbitモードでしか動作しません。 2. NXP評価ボードIMX95LPD5EVK-19は、Marvell AQR113C PHYを使用して10GBase-Tポートを実装しています。 a) 図1のブロック図、セクション1.1では、PHYがUSXGMIIインターフェースに接続されているように見えます: b) 関連するセクション2.11.3「10 Gbitイーサネットインターフェース」では、AQR113Cイーサネットトランシーバーが10Gbitから10bitまでのすべてのデータレートをサポートするとされており、真のUSXGMIIを示唆しています: c) この節では、イーサネットPHYを接続するインターフェースがXFIであることも記載されています。 結論として、i.MX95がフルのマルチレートUSXGMIIに対応しているのか、それとも10Gbit専用バージョンのみ対応しているのか混乱しています。 NXPの評価ボードを参考にしてみましたが、そのボードの10GbEポートがUSXGMII(10Gbitから10bitまでのマルチレート対応)で接続されているのか、XFI(10Gbitのみ)で接続されているのかも分かりません。 教えていただけますか: i.MX95に10Gbitから10Gbitまでの速度をサポートする真のマルチレート10GbEポートを実装することは可能でしょうか? Re: USXGMII multi-rate on i.MX95 詳細なご回答をいただき、誠にありがとうございます。 これで私たちの側の混乱は解消されました! Re: USXGMII multi-rate on i.MX95 1. 「10G-USXGMII」の意味 「10G-USXGMII」とは、10G専用モードではなく、標準的なマルチレートUSXGMIIプロトコルを指します。「10G」は固定されたSerDesレーン速度を示し、USXGMIIは10M、100M、1G、2.5G、5G、10Gイーサネットの帯内レート適応をサポートしています。 i.MX95では、このモードはPCS_PROT_10G_SXGMII設定で表されます。 2. i.MX95 EVKで使用されたインターフェース i.MX95 EVKは、USXGMIIではなくXFI(10GBASE-R)を使用します。imx95-19x19-evk.dtsでは、enetc_port2 は次のように設定されています。 phy-mode = "10gbase-r"; したがって、搭載されているAQR113CはXFIモードで動作します。 3. 真のマルチレートUSXGMIIはサポートされていますか? はい。i.MX95 NETCハードウェアはUSXGMIIをサポートし、LinuxのENETC4ドライバはenetc4_set_port_speed()を通じて速度変更を処理します。Marvell AQR113CはUSXGMIIホストインターフェースモードもサポートしています。 4. カスタムボードに必要なものは何ですか? マルチレート動作を完全に有効にするには: デバイスツリーの設定: phy-mode = "usxgmii"; managed = "in-band-status"; AQR113Cのファームウェアを、XFIではなくUSXGMIIホストモードに設定してください。 EVKは10GbEポートにXFIを使用していますが、カスタムi.MX95設計ではUSXGMIIをAQR113C(または類似のPHY)と組み合わせて、10M/100M/1G/2.5G/5G/10Gを単一のMACからPHYリンクまでサポートできます。 よろしくお願いします。 Re: USXGMII multi-rate on i.MX95 もう一つ追加で質問します:Marv AQR113C ellのドライバはNXP Linux BSPに含まれているのか、それとも自分たちで用意しなければならない外部モジュールですか? Re: USXGMII multi-rate on i.MX95 私は元の投稿者ではありませんが、私もusxgmiiを動作させようとしています。 NXPは、usxgmiiがBSPカーネル上で動作するかどうかを検証したことがありますか?mv-cux3610 PHYで使用しようとしていますが、以下のエラーが発生します。 [ 43.063202] nxp_enetc4 0002:00:10.0 (unnamed net_device) (uninitialized): MAC returned PCS which does not support usxgmii [ 43.074224] nxp_enetc4 0002:00:10.0 (unnamed net_device) (uninitialized): failed to validate link configuration for inband [ 43.085308] nxp_enetc4 0002:00:10.0: Failed to create phylink [ 43.091726] nxp_enetc4 0002:00:10.0: probe with driver nxp_enetc4 failed with error -22 これは、NetC PCSがUSXGMIIサポートを宣伝しておらず、10Gbase-R、2500-basex、SGMIIのみが原因のようです: (これはLF-6.18.YのLinux-IMXブランチでの話です) Re: USXGMII multi-rate on i.MX95 このドライバーはNXP Linux BSPに含まれています。リンク: https://github.com/nxp-real-time-edge-sw/real-time-edge-linux/blob/linux_6.18.20/drivers/net/phy/aquantia/aquantia_main.c Re: USXGMII multi-rate on i.MX95 お返事ありがとうございます! 最後に質問です。i.MX95 EVKのenetc_port2とAQR113CをUSXGMIIモードに設定することは可能でしょうか?これにより、EVK上でUSXGMIIインターフェースのマルチレート機能をテストできるのでしょうか? Re: USXGMII multi-rate on i.MX95 EVKで単純に「DTSをusxgmiiに切り替える」のはソフトウェアレベルの試みに過ぎません。 また、USXGMIIファームウェアでAQR113Cを再プロバイニングする必要があり、EVKのXFI向けボード設計のため、マルチレート検証には信頼性が高くありません。 もし目標が真のマルチレートUSXGMII(10M/100M/1G/2.5G/5G/10G)を検証することであれば、USXGMII向けにカスタムボードを作ることを推奨します(USXGMIIホストモードファームウェアではSerDes routing + AQR113C + phy-mode = "usxgmii")。 AQR113C用のUSXGMIIプロビジョニングファームウェアを取得した後、EVKボードを使うことができますが、その制限にはご注意ください。 よろしくお願いします。
記事全体を表示
エッジAI Edge AIで最初の一歩を踏み出すにはどうすればいいですか?
記事全体を表示
EB tresos 错误“无法验证许可证”和“文件签名无效” 我使用 EB tresos 配置 S32K344 基本 RTD 版本 SW32K3_S32M27x_RTD_R21-11_4.0.0_P19SW32K3_S32M27x_RTD_R21-11_4.0.0_P19。 但是生成时,EB 报告如下错误:“无法验证许可证”和“文件签名无效”: 我没有修改RTD文件,那么可能是什么原因导致的呢?该如何解决? Re: EB tresos error "Failed to verify license" and "The signature of file is invalid& HI 请确保您没有修改软件包中的任何文件,否则修改将导致违反许可协议。您也可以尝试卸载后再重新安装。另外,请确保您使用的是EB Tresos Studio 29.0.0 版本。 S32K3 标准软件-> 汽车软件 - S32K3/S32M27x - Cortex-M 实时驱动程序 -> S32K3_S32M27x 实时驱动程序 ASR R21-11 版本 4.0.0 P19 S32K3 标准软件-> 汽车软件 - EB tresos Studio / AUTOSAR 配置工具 -> EB tresos Studio 29.0.0 导入 Hse_Ip_AesEncAsyncIrq_S32K344 和 Wdg_Example_S32K344 时,我没有遇到任何问题。 请检查 EBTresos 安装路径下的links文件夹中是否存在文件SW32K3_S32M27x_RTD_R21-11_4.0.0_P19.link 。我之前遇到过存在多个 S32K3 RTD .link 版本的情况。某些 EBTresos 版本中links文件夹中的文件可能会导致错误。 此致敬礼, Robin
記事全体を表示
edge ai How can go first step with edge AI?
記事全体を表示
S32K312 安全启动和编程闪存 附件中的 CMM 文件是一个脚本,它将 FBL 和应用程序写入 S32K312 MCU,然后激活 SecureBoot、SecureDebug 和配置锁定。 我们希望对运行此 CMM 时出现的 HardFault 问题进行审查和改进。 如屏幕截图所示,之前在执行“Go”时,导入 FBL 和应用程序后发生 HardFault,JTAG 时钟始终设置为 5 MHz。 作为一项更改,我们在导入应用程序文件后将 SYStem.JtagClock 设置为 1 MHz。通过这一改变,在运行 CMM 时,“Go”步骤很少发生硬故障,因此我们得出结论,降低 JTAG 时钟速度是一种有效的方法。但是,当应用修改后的 CMM 时,在导入 FBL 和 App 后,偶尔会在“Go”时出现“被 vectbl 停止”错误。 请您检查一下 CMM,确保其整体运行稳定。同时,我们也想了解一下如何改进它,以彻底消除“被 vectbl 停止”的错误。 原始三坐标测量机:GN7_PE_MAIN_G_SECURE_260412.cmm 修改后的 CMM(JTAG 时钟已更改为 1 MHz):GN7_PE_MAIN_G_SECURE_260412_0714RE.cmm 此外,我们希望在启用安全启动后导入不同的 FBL。在启用安全启动的情况下,是否可以导入不同的 FBL?如果可以的话,我们希望您能提供一份指南。 Re: S32K312 Secureboot and Program Flash 嗨@jeongwoo 我看到的主要问题是: 这意味着:加载粉色文件并重置设备。After this RESET, SBAF 应该会安装 HSE 固件。但关键是——这个操作大约需要 1 秒钟。但是,在 0.1 秒后,您将再次重置 MCU,并且您将立即通过 fbl 对 0x40_0000 处的粉色文件进行重新编程。至少将等待时间增加到 1.3 秒。否则,SBAF 会尝试安装 HSE 固件,而您同时会尝试重新编程 fbl。 此致, Lukas Re: S32K312 Secureboot and Program Flash 您好,谢谢您的回复。 关于目前在添加 HSE 后延迟时间设置为 0.1 秒的部分,即使将时间设置得更短,写入控制器的程序功能也没有任何问题。我想请问是否真的有必要将延迟时间增加到 1 秒。
記事全体を表示
USXGMII multi-rate on i.MX95 Hi, we are trying to evaluate if we can implement an ethernet port on the i.MX95 that is able to support the following ethernet speeds: 10GBASE-T 5GBASE-T 2.5GBASE-T 1000BASE-T 100BASE-TX 10BASE-Te In general this requires us to place a 10Gbit capable ethernet PHY on our design and connect it to the i.MX95 ethernet controller via one of two interfaces: USXGMII or XFI From our understanding the USXGMII interface is a multi-rate interface in theory, meaning it can facilitate all speeds from 10Gbit to 10bit over one link. In contrast the XFI interface is a single-rate interface that can only facilitate 10Gbit. According to the i.MX95 reference manual (e.g. section 104.2, table 621) the i.MX95 supports both XFI and "10G-USXGMII". So initially it looks like our desired interface USXGMII seems to be supported. There are several points that confuse us however: 1. The declaration "10G-USXGMII" could be interpreted to mean that the interface is a USXGMII link in theory but it only really works in the 10Gbit mode. 2. The NXP eval board IMX95LPD5EVK-19 implements a 10GBase-T port using a Marvell AQR113C PHY. a) In the block diagram in figure 1, section 1.1 the PHY looks to be connected to the USXGMII interface: b) In the associated section 2.11.3 "10 Gbit Ethernet Interface" the AQR113C ethernet transceiver is said to support all data rates from 10Gbit to 10bit, hinting at true USXGMII: c) This section also mentions that the interface used to connect the ethernet PHY is XFI: So in conclusion we are confused wether or not the i.MX95 supports the full multi-rate USXGMII or only a 10Gbit-only version. We tried to look at the NXP eval board as a reference but we are not sure either if the 10GbE port on that board is connected via USXGMII (allowing multi-rate from 10Gbit to 10bit) or via XFI (10Gbit only). Could you please clarify for us: Is it possible to implement a true multi-rate 10GbE port on the i.MX95 that supports speeds from 10Gbit to 10bit? Re: USXGMII multi-rate on i.MX95 Thank you very much for this in-depth response. This clears up any confusion on our side! Re: USXGMII multi-rate on i.MX95 1. Meaning of "10G-USXGMII" "10G-USXGMII" refers to the standard multi-rate USXGMII protocol, not a 10G-only mode. The "10G" denotes the fixed SerDes lane speed, while USXGMII supports in-band rate adaptation for 10M, 100M, 1G, 2.5G, 5G, and 10G Ethernet. On i.MX95, this mode is represented by the PCS_PROT_10G_SXGMII setting. 2. Interface Used on the i.MX95 EVK The i.MX95 EVK uses XFI (10GBASE-R) rather than USXGMII. In imx95-19x19-evk.dts, enetc_port2 is configured as: phy-mode = "10gbase-r"; Therefore, the onboard AQR113C operates in XFI mode. 3. Is True Multi-Rate USXGMII Supported? Yes. The i.MX95 NETC hardware supports USXGMII, and the Linux ENETC4 driver handles speed changes through enetc4_set_port_speed(). The Marvell AQR113C also supports USXGMII host-interface mode. 4. What Is Needed on a Custom Board? To enable full multi-rate operation: Configure the device tree: phy-mode = "usxgmii"; managed = "in-band-status"; Configure the AQR113C firmware for USXGMII host mode instead of XFI. The EVK uses XFI for its 10GbE port, but a custom i.MX95 design can use USXGMII with the AQR113C (or a similar PHY) to support 10M/100M/1G/2.5G/5G/10G over a single MAC-to-PHY link. Thanks Re: USXGMII multi-rate on i.MX95 I am not the original poster but I am also trying to get usxgmii working. Has NXP ever validated if usxgmii works on the BSP kernel? I am trying to use it with a mv-cux3610 phy but I get these errors: [ 43.063202] nxp_enetc4 0002:00:10.0 (unnamed net_device) (uninitialized): MAC returned PCS which does not support usxgmii [ 43.074224] nxp_enetc4 0002:00:10.0 (unnamed net_device) (uninitialized): failed to validate link configuration for inband [ 43.085308] nxp_enetc4 0002:00:10.0: Failed to create phylink [ 43.091726] nxp_enetc4 0002:00:10.0: probe with driver nxp_enetc4 failed with error -22 it seems to be caused by the netc PCS not advertising usxgmii support, only 10gbase-r, 2500-basex and sgmii: (this is on the lf-6.18.y linux-imx branch) Re: USXGMII multi-rate on i.MX95 Just one more follow-up question: Is the driver for the Marvell AQR113C included in the NXP Linux BSP or is it an out-of-tree module we must supply ourselves? Re: USXGMII multi-rate on i.MX95 Thank you for your reply! Last question from my side: Is it possible to configure the enetc_port2 and the AQR113C on the i.MX95 EVK to USXGMII mode? Would this allow us to test the multi-rate functionality of the USXGMII interface on the EVK? Re: USXGMII multi-rate on i.MX95 the driver has been included in NXP Linux BSP, link: https://github.com/nxp-real-time-edge-sw/real-time-edge-linux/blob/linux_6.18.20/drivers/net/phy/aquantia/aquantia_main.c Re: USXGMII multi-rate on i.MX95 Simply "switching the DTS to usxgmii" on the EVK is only a software-level attempt. You would also have to re-provision the AQR113C with USXGMII firmware, and because of the EVK's XFI-oriented board design, this is not a reliable path for multi-rate validation. If the goal is to validate true multi-rate USXGMII (10M/100M/1G/2.5G/5G/10G), we recommend building a custom board designed for USXGMII (SerDes routing + AQR113C in USXGMII host-mode firmware + phy-mode = "usxgmii"). You can use EVK board, after obtaining the USXGMII provisioning firmware for the AQR113C, but please be aware of its limitations. Thanks
記事全体を表示
参考知识 64/5000 寻求有关 M 的刷机工具和固件包的技术帮助 我是一名IT技术员,最近在网上购买了一台过时的工业平板电脑。处理器型号为 MCIMX6Q5EYM10AD QKM1715 5N55D MSIA GOkMOH。我现在想在这台工业平板电脑上重新安装操作系统,要么安装标准的安卓系统,要么安装Windows 10。然而,尽管我在网上进行了广泛的搜索,我仍然一头雾水。我想请问是否有技术专家可以帮帮我?我需要一款刷机工具或软件,以及适用于这款特定型号设备的刷机包,无论是安卓系统还是Windows 10系统都可以。希望你一切安好。愿善良的人们蒙受和平与繁荣的祝福。谢谢你! Re: 参考知识 64/5000 Seeking technical assistance regarding the flashing tool and firmware package for t 谢谢,祝您生活愉快 Re: 参考知识 64/5000 Seeking technical assistance regarding the flashing tool and firmware package for t 你好@huansensky 希望你一切都好。 实际上,你应该联系你的平板电脑供应商。 我们有评估板的电路板支持包。此外,我们还有安卓系统。 但是,特定硬件的软件应该由供应商提供。 顺祝商祺! 萨拉斯。
記事全体を表示
S32K144 MCUの設定問題 こんにちは、NXPサポートチームの皆さん、 私はEB Tresos / NXP MCAL AUTOSAR 4.2.2を使って、S32K144プロジェクトに取り組んでいます。MCUの設定を生成しフラッシュした後、ボードはデバッガに応答しなくなりました。 問題の概要: 生成されたMCU構成をフラッシュした後: デバッガーがボードを検出しなくなりました。 デバッグ接続に失敗しました。 LEDは点灯し続けます。 デバッガー接続を再度試みても、ボードは復旧しないようです。 MCUがリセット、クロック障害、PLLロック障害、またはクロックモニターリセットループに陥っているのではないかと疑っています。 私の EB tresos の確認を手伝ってもらえますか。.xdm設定と確認: S32K144に対してSOSC構成が正しいかどうか。 SPLL構成が有効かどうか。 SOSC/SPLLクロックモニターリセットを有効にすると、このような回復不能なデバッグ問題を引き起こす可能性があるのか。 私のRUN/SYS/CORE/BUS/FLASHクロックのリファレンス設定が正しいかどうか。 FIRC 48 MHzのみを使用した安全な復旧構成には、具体的にどのようなEBトレソ設定を使用すべきでしょうか。 デバッグアクセスが失敗した場合、基板を復元する方法。 デバッガーを再接続してみましたが、ボードは復旧しません。S32K144の正確な回復手順を教えてください。例えば: -リセット中に接続 -マス消去 -セキュアデバイス回収 - 接続時にユーザーコードの実行を無効にする -PEMicro / OpenSDA / J-Link 復旧ステップ よろしくお願いいたします。 アイシュワリヤー
記事全体を表示
Edgefast Open 在 SDK 中不可用 自 SDK 版本 26.09.00 起,EdgeFast Bluetooth PAL 将被弃用,我想开始测试并切换到新的 EdgeFast Open。 如文档中所述: https://mcuxpresso.nxp.com/mcuxsdk/latest/html/middleware/edgefast_open/docs/MCUXSDKEFOPENUG/topics/demo.html#run-a-demo-application-using-mcuxpresso-ide 似乎可以使用 MCUXPresso IDE 测试新库,所以我从 MCUXpresso SDK Builder 下载了适用于 RT685、RT1060 和 RT1170 的最新 26.06 SDK,并尝试导入一个示例,但我找不到任何使用“开放”库的示例。该 SDK 中似乎只包含了 PAL 版本。 我还使用 MCUXPresso for VSC 进行了测试,从 GitHub 下载了存储库。我在源代码和清单文件中都看到了这个库,但是它没有包含在任何板示例中。 我该如何测试新的 EdgeFast 库? 先行致谢。 Re: Edgefast Open not available on SDK 我就是从那里开始的。 问题在于: - 为 MCUXPresso 生成的 SDK 不包含任何库或示例的痕迹。 - 该库和示例已上传至 GitHub。我克隆了仓库,可以看到文件,但仍然无法导入使用此库的示例。 Re: Edgefast Open not available on SDK 您好, 请查看mcux SDK的以下目录:mcuxsdk\middleware\edgefast_open。 问候, 丹尼尔。 Re: Edgefast Open not available on SDK 您需要从仓库中获取 SDK。并非来自 SDK 构建器。 然后,您可以按如下方式构建示例: C:\mcux_26_06\mcuxsdk\mcuxsdk>west build -b evkbmimxrt1170 middleware/edgefast_open/examples/peripheral_ht --build-dir build_peripheral_ht --pristine -- -Dcore_id=cm7 然后刷机: C:\mcux_26_06\mcuxsdk\mcuxsdk>west flash --build-dir build_peripheral_ht 输出: BLE Peripheral HT demo start... Bluetooth initialized Advertising successfully started 问候, 丹尼尔。
記事全体を表示
关于 MIFARE SAM AV3 评估板的 RFIDDiscover 设置的问题 你好, 我正在使用 MIFARE SAM AV3 评估板 (UM11316)。根据第 7.4.1 节,RFIDDiscover 需要使用 Ashling IN-CLA7816 适配器和兼容的 PC/SC 阅读器,通过 ISO7816 接口连接电路板。 请问您能否澄清一下: Ashling IN-CLA7816 适配器是必需的吗?还是可以使用其他 ISO7816 适配器? 哪些 PC/SC 阅读器已经过验证或获得评估板和 RFIDDiscover 的官方支持? 您能推荐一款目前市面上可以买到的阅读器吗? 谢谢! Re: Question Regarding RFIDDiscover Setup for MIFARE SAM AV3 Evaluation Board 你好@boussihak , 希望你一切都好。 MIFARE SAM AV3 开发套件应该已经包含一个您可以使用的 ISO/IEC 7816 智能卡读卡器适配器。 另外,我建议您使用PEGODA 免接触式智能卡读卡器;该设备可在 PC/SC 模式下使用,并集成了一个接触式卡槽。 问候, 爱德华多。
記事全体を表示
参考知识 64/5000 Mのフラッシュツールおよびファームウェアパッケージに関する技術支援を求めています 私はIT技術者で、最近オンラインで古いインダストリアルタブレットを購入しました。プロセッサモデルは5N55D MSIA GOkMOH MCIMX6Q5EYM10AD QKM1715です。今、この産業用タブレットにOSを再インストールしたいと考えています。標準のAndroidシステムかWindows 10のいずれかに。しかし、インターネットで徹底的に検索してみたものの、いまだに解決策が見つからない。技術的な専門家で助けてくれる方がいれば教えていただけますか?この特定のデバイスモデル(Android向けでもWindows 10用でも)向けのフラッシュツールやソフトウェア、そしてフラッシュパッケージが必要です。この投稿があなたにとって良い知らせとなることを願っています。善良な人々が平和と繁栄に恵まれますように。ありがとう! Re: 参考知识 64/5000 Seeking technical assistance regarding the flashing tool and firmware package for t ありがとうございます。どうぞ楽しい人生をお過ごしください。 Re: 参考知识 64/5000 Seeking technical assistance regarding the flashing tool and firmware package for t こんにちは、 @huansensky さん。 お元気でお過ごしのことと思います。 実際には、タブレットの販売業者に連絡したほうがいいですよ。 評価ボードには BSP があります。それに、 Androidもあります。 ただし、特定のハードウェア用のソフトウェアはベンダーが提供すべきです。 よろしくお願いいたします。 サラス。
記事全体を表示
NXP S32K144 汽车入门指南 你好, 我是NXP S32K144系列的新手,需要详细的说明来设置我的开发环境。请问您能否澄清一下:   需要哪个版本的S32 Design Studio ? 我应该安装标准SDK还是RTM/RTD驱动程序? 该系列硬件需要哪些额外的驱动程序或软件包? S32K1 Re: Getting started guide for NXP S32K144 - Automotive 嗨@Buddyn 我们始终建议使用最新的软件版本和工具版本,尤其是在您刚开始接触这项技术时。 对于S32K1设备,最新软件版本为RTD 3.0.0。该软件采用 S32 Design Studio (S32DS) 3.6.6 开发和验证。不过,根据我的经验,它也适用于较新的 S32DS 3.6.x 版本。版本。因此,我建议下载并使用最新的 S32DS 3.6 版本。 这些应该足以让你开始使用该平台了。您可能需要的任何其他代码包,软件包将取决于您的应用程序的具体要求。 要探索其他可用于 S32K1 设备的软件包和示例,您可以访问S32K1 参考软件。 BR,VaneB Re: Getting started guide for NXP S32K144 - Automotive 适用于基于RTD的软件。是否有相关的开源固件示例? NXP 是否有关于 s32DS 配置(时钟、引脚、外设)的参考资料或培训资料?如果可以的话,请提供一些参考链接。 提前致谢
記事全体を表示
MIFARE SAM AV3評価ボードのRFIDDiscoverセットアップに関する質問 こんにちは、 私はMIFARE SAM AV3評価ボード(UM11316)を使っています。セクション7.4.1によると、RFIDDiscoverでは、ボードをAshling IN-CLA7816アダプターと対応PC/SCリーダーを用いてISO7816インターフェース経由で接続する必要があります。 もう少し詳しく教えていただけますか: Ashling IN-CLA7816アダプターは必須ですか?それとも別のISO7816アダプターも使えますか? どのPC/SCリーダーが評価ボードやRFIDDiscoverで検証済み、または公式にサポートされているのでしょうか? 現在購入可能なリーダーをおすすめしてもらえますか? よろしくお願いします。 Re: Question Regarding RFIDDiscover Setup for MIFARE SAM AV3 Evaluation Board こんにちは、 @boussihak さん、 あなたの調子が良いといいのですが。 MIFARE SAM AV3開発キット には、すでに使用可能なISO/IEC 7816スマートカードリーダーアダプターが含まれているはずです。 また、 PEGODAのコンタクトレススマートカードリーダーの使用をおすすめします。このデバイスはPC/SCモードで使用可能で、接点カードスロットを統合しています。 よろしくお願いいたします。 エドゥアルド。
記事全体を表示
S32K312 Secureboot and Program Flash The attached CMM file is a script that writes the FBL and App to the S32K312 MCU and then activates SecureBoot, SecureDebug, and Configuration Lock. We would like to request a review and improvement regarding the HardFault issue that occurs when running this CMM. Previously, as shown in the screenshot, a HardFault occurred after the FBL and App were imported when executing "Go," with the JTAG Clock set to 5 MHz throughout. As a change, we set SYStem.JtagClock to 1 MHz after importing the App file. With this change, HardFaults rarely occurred at the "Go" step when running the CMM, so we concluded that lowering the JTAG Clock speed is an effective approach. However, when the modified CMM is applied, a "stopped by vectbl" error occasionally occurs at "Go" after the FBL and App have been imported. We kindly ask you to review the CMM so that it can run stably overall, and we would like to inquire about how to improve it so that the "stopped by vectbl" error does not appear at all. Original CMM: GN7_PE_MAIN_G_SECURE_260412.cmm Modified CMM (JTAG Clock changed to 1 MHz): GN7_PE_MAIN_G_SECURE_260412_0714RE.cmm Additionally, we would like to import a different FBL after SecureBoot has been enabled. Is there a way to import a different FBL while SecureBoot is enabled? If it is possible, we would appreciate it if you could provide a guide. Re: S32K312 Secureboot and Program Flash Hi @jeongwoo  The main problem I can see is this: This means: you load the pink file and you reset the device. After this reset, SBAF is supposed to install HSE firmware. But the key point is - this operation takes about 1 second. But then you reset the MCU again in 0.1s and you are going to reprogram pink file at 0x40_0000 by fbl immediately after that. Increase the waiting time to 1.3s, at least. Otherwise SBAF tries to install HSE FW and you try to reprogram fbl at the same time.  Regards, Lukas Re: S32K312 Secureboot and Program Flash Hello, thank you for your reply. Regarding the part where the delay time is currently set to 0.1 seconds after adding HSE, there are no issues with the program functions written to the controller even when the time is set shorter. I would like to ask if it is absolutely necessary to increase the delay time to 1 second.
記事全体を表示
FS26 PMICのSN29500に基づくFIT率 FS26 PMICについてですが、SN29500-2に基づくFITレート値と、SN92500-2からどのテーブルが使われているかの詳細、部品カテゴリ+参照仮想Tj値などを教えていただけますか? 機能安全 Re: FIT rate based on SN29500 for FS26 PMIC これは公開されたドキュメントではありません。以下のリンクからチケットを提出してください: 家庭用
記事全体を表示
Getting started guide for NXP S32K144 - Automotive Hello, I am new to the NXP S32K144 series and need detailed instructions to set up my development environment. Could you please clarify:   Which version of S32 Design Studio is required? Whether I should install the standard SDK or the RTM/RTD drivers? What additional drivers or software packages are needed for this specific hardware series? S32K1 Re: Getting started guide for NXP S32K144 - Automotive Hi @Buddyn  We always recommend using the latest software releases and tool versions, especially if you are just getting started with the technology. For S32K1 devices, the latest software release is RTD 3.0.0, which was developed and validated with S32 Design Studio (S32DS) 3.6.6. However, based on my experience, it also works well with newer S32DS 3.6.x versions. Therefore, I would recommend downloading and using the latest available S32DS 3.6 release. This should be enough to get you started with the platform. Any additional software packages you may need will depend on your application's specific requirements. To explore other software packages and examples available for S32K1 devices, you can navigate to S32K1 Reference Software. BR, VaneB Re: Getting started guide for NXP S32K144 - Automotive For this RTD based software. Is there is any open-source firmware example for it. Does NXP has any reference or training sections for configurations (clock, pins, peripheral) in s32DS. If so, kindly share some reference link.  Thanks in advance
記事全体を表示
EB tresos error "Failed to verify license" and "The signature of file is invalid" I use EB tresos to config S32K344 base RTD version SW32K3_S32M27x_RTD_R21-11_4.0.0_P19SW32K3_S32M27x_RTD_R21-11_4.0.0_P19. But when generate, EB report error like below, about "Failed to verify license" and "The signature of file is invalid": I didn't modify the RTD files, so what might be the reason, how to solve that? Re: EB tresos error "Failed to verify license" and "The signature of file is invalid& Hi Please make sure that you didn't modify any file in the package, otherwise the modification will lead to license violation. You can also try to uninstall and install again. Also, make sure that you  are using EB Tresos Studio 29.0.0. S32K3 Standard Software -> Automotive SW - S32K3/S32M27x - Real-Time Drivers for Cortex-M -> S32K3_S32M27x Real-Time Drivers ASR R21-11 Version 4.0.0 P19 S32K3 Standard Software -> Automotive SW - EB tresos Studio / AUTOSAR Configuration Tool -> EB tresos Studio 29.0.0 I haven't encountered any problems importing Hse_Ip_AesEncAsyncIrq_S32K344 and Wdg_Example_S32K344. Please check if the file SW32K3_S32M27x_RTD_R21-11_4.0.0_P19.link exists in the links folder under your EBTresos installation path. I have previously encountered cases where the presence of multiple versions of S32K3 RTD .link files in the links folder of certain EBTresos versions could cause errors. Best Regards, Robin
記事全体を表示