Multi Source Translation Content

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

Multi Source Translation Content

ディスカッション

ソート順:
EB Tresos激活码失败 我尝试使用 EBtresos for AUTOSAR,但是激活失败了。 激活码: 7416-E905-5CC2-F20A ERROR: flxActAppActivationSend (50040,41147,10248) 指定的数量超过最大允许数量 (0)。 连接 FlexNet Operations Server 失败。 所以我需要另一个激活码才能使用 EBtresos。 谢谢! Re: EB tresos activation code failed 感谢您的耐心等待。 内部团队已更新网页上的激活码。 请点击下方链接查找最新激活码: S32K3 标准软件-> 汽车软件 - EB tresos Studio / AUTOSAR 配置工具 -> EB tresos Studio 29.0.0 Re: EB tresos activation code failed HI 给您带来的不便,我们深表歉意! 我已经将此问题报告给了内部团队,一旦收到他们的回复,我会立即通知您。   此致敬礼, Robin Re: EB tresos activation code failed 您好,NXP 网站上更新的激活码仍然是:7416-E905-5CC2-F20A。我今天尝试激活它,但仍然失败了。 ERROR: flxActAppActivationSend (50040,41147,10248) 指定的数量超过最大允许数量 (0)。 连接 FlexNet Operations Server 失败。 Re: EB tresos activation code failed 请查看我之前的回复;激活码已更新。 请告诉我哪个版本的 EBTresos 页面激活码尚未被修改,以便我向内部团队报告并进行更新。
記事全体を表示
EB tresos activation code failed i'm trying to use EBtresos for AUTOSAR, but i failed to activated. activation Code : 7416-E905-5CC2-F20A ERROR: flxActAppActivationSend (50040,41147,10248) The quantity specified exceeds maximum quantity allowed (0). Connection to FlexNet Operations Server failed. so i need the the other activate code to use the EBtresos. thank you. Re: EB tresos activation code failed Thank you for your patience. The internal team has updated the activation code on the webpage. Please click the link below to find the latest activation code: S32K3 Standard Software -> Automotive SW - EB tresos Studio / AUTOSAR Configuration Tool -> EB tresos Studio 29.0.0  Re: EB tresos activation code failed Hi Sorry for the inconvenience we bring you! I have already reported this issue to the internal team, and I will let you know as soon as I receive their reply.   Best Regards, Robin Re: EB tresos activation code failed Hello, the activation code updated on the NXP website is still this: 7416-E905-5CC2-F20A. I tried to activate it today, but it still failed ERROR: flxActAppActivationSend (50040,41147,10248) The quantity specified exceeds maximum quantity allowed (0). Connection to FlexNet Operations Server failed. Re: EB tresos activation code failed Please see my previous reply; the activation code has been updated. Please tell me which version of EBTresos page has not yet had its activation code modified so I can report it to the internal team for an update.
記事全体を表示
LX2160A:SerDesレーンを使わないレシーバのプルダウンバリュー こんにちは、 チップ: LX2160A アプリケーションノートAN5407には、SerDesレーンを使用しない場合にプルダウンを指定しています: もし一部のSerDesレーンがノーコネクトなら、その受信ピンをGNDに引き下げてください。 プルダウンの価値を教えていただけますか?それともレシーバのピンを直接GNDに接続すべきでしょうか? ありがとうございます。 Re: LX2160A: Pull down value on receiver for SerDes lanes not used こんにちは、 AN5407の「 受信機ピンをGNDに引き下げる」 という言語は、方法について意図的に曖昧にしています。NXPの明確化は、GNDへの直接の0 Ω接続が正しく推奨されるアプローチであるということです。 SerDesの電源オフ RXピンがGNDに接続されている場合でも、SerDesブロックに電源が供給されたままの場合は、AN5407ではファームウェアを介して未使用のレーンを電源オフにすることを推奨しています。PBIフェーズ中にGeneral Control 0レジスタを設定して、未使用のSerDesレーンを電源オフにします。SerDesブロック全体が既に電源オフになっている場合は、個々のレーンの電源オフは不要です。 よろしくお願いします。
記事全体を表示
RT1010/RT1011 フレキシオEDMA 私はiMX RT1011 Nano Kitを使用しています 素敵なボード シフター0から8ビット並列処理用にEDMA Flexioをセットアップしようとしています タイマー0を30MHzに設定。EDMAにより512バイト(リクエストごとに1バイト)を送信。 コード: FLEXIO_DEV->SHIFTCTL[TX_SHIFTER] = FLEXIO_SHIFTCTL_TIMESEL(WR_TIMER) | FLEXIO_SHIFTCTL_TIMPOL(0U) | FLEXIO_SHIFTCTL_PINCFG(3U) /* 出力 */ | FLEXIO_SHIFTCTL_PINSEL(DATA_PIN_START) | FLEXIO_SHIFTCTL_PINPOL(0U) | FLEXIO_SHIFTCTL_SMOD(2U); /* 送信 */ /* タイマー0: WRストローブ、1バイトあたり1パルス * TIMCMP下位バイト = (flexio_clk / (2*wr_clk)) - 1 * TIMCMP[15:8] = (beats*2)-1 = 1 (シフタロードごとに1バイト) */ timDiv = (flexioClk_Hz / (2U * wrClock_Hz)); if (timDiv != 0U) { timDiv -= 1U; } timDiv &= 0xFFU; FLEXIO_DEV->TIMCMP[WR_TIMER] = (1U << 8U) | timDiv; FLEXIO_DEV->TIMCFG[WR_TIMER] = FLEXIO_TIMCFG_TIMOUT(1U) | FLEXIO_TIMCFG_TIMDEC(0U) | FLEXIO_TIMCFG_TIMRST(0U) | FLEXIO_TIMCFG_TIMDIS(2U) /* 比較時に無効化 */ | FLEXIO_TIMCFG_TIMENA(2U) /* トリガーがハイのときに有効化 */ | FLEXIO_TIMCFG_TSTOP(0U) | FLEXIO_TIMCFG_TSTART(0U); FLEXIO_DEV->TIMCTL[WR_TIMER] = FLEXIO_TIMCTL_TRGSEL((4U * TX_SHIFTER) + 1U) /* シフター0フラグ */ | FLEXIO_TIMCTL_TRGPOL(1U) /* アクティブロー */ | FLEXIO_TIMCTL_TRGSRC(1U) /* 内部 */ | FLEXIO_TIMCTL_PINCFG(3U) /* 出力 */ | FLEXIO_TIMCTL_PINSEL(WR_PIN) | FLEXIO_TIMCTL_PINPOL(1U) /* WR アクティブロー */ | FLEXIO_TIMCTL_TIMOD(1U); /* デュアル 8 ビット ボー/ビット */ /* Shifter0からのDMAリクエストを有効にする */ FLEXIO_DEV->SHIFTSDEN |= (1U << TX_SHIFTER); /* FlexIOを有効にする */ FLEXIO_DEV->CTRL |= FLEXIO_CTRL_FLEXEN_MASK; ロジックアナライザで信号を確認しました 見た目は私と似ているが、512パックの一部でデータが欠落している。 つまり、例えば200バイト送信して、その後送信を停止し、512バイトすべて送信するということです。 ツァヒ Re: RT1010/RT1011 FLEXIO EDMA こんにちは、 @TZAHI さん。 私たちの製品にご関心を寄せ、コミュニティをご利用いただき、本当にありがとうございます。 最も可能性の高い確認方向は、eDMAが30 MHz WRクロックでFlexIO SHIFTBUFを十分に速く連続的に補充できるかどうかです。 現在のリクエストあたり1バイトの構成では、DMA要求レートは非常に高くなる可能性があります。これはeDMA、バス仲裁、FlexIOのSHIFTBUFリフィルタイミングには厳しい場合があります。 考えられる症状としては、TXシフトレバーのアンダーランが挙げられます。転送が失敗した場合は、FlexIOを再初期化またはクリアする前に、まずSHIFTERRをすぐに確認してください。 mayliu1_0-1784792340391.png 可能であれば、CPU/バスクロックを上げるか、WRクロックを30MHz未満(例えば20MHzまたは10MHz)に下げてみてください。より低いWRクロックで転送が安定する場合、問題はDMA/FlexIOのリフィルタイミングに関連している可能性が高い。 お役に立てれば幸いです。 よろしくお願いいたします。 5月
記事全体を表示
S32DS.3.x IDE virus checked and deleted While installing and updating the S32DS.3.5 IDE, I get Alyac virus check and delete it. Have these symptoms been known? Is there a solution to what caused it? Re: S32DS.3.x IDE virus checked and deleted Hi,  to be honest, for me it is very first time when I see such message. It is possible that the installer has been corrupted on your side or there is an issue with the antivirus software.  Re: S32DS.3.x IDE virus checked and deleted JungkyuHan1_0-1784698236917.png Ransomware detected and deleted messege
記事全体を表示
S32G3 LLCE CANドライバーをfreeRTOSで動かす方法 こんにちは、みんな、 私はS32G-VNP-RDB3ボードを扱っており、このモジュールでLLCE CANを使おうとしています。NXPのウェブサイトを検索しましたが、S32G2のポーティング方法がS32DS3.4しか見つかりませんでした。S32DS3.5は搭載されていません。S32G3の移植方法。私のセットアップはS32DS3.5です。RTDは4.4.4です。EB Tresos StudioとLLCEの場合、どのバージョンを使ってコードをコンパイルCAN2CAN通過させるべきでしょうか?S32G-VNP-RDB3(S32G399A)のポーティング方法はどこで見つけられますか?以下は私のS32DS.3.5ですインストール手順。 Jimmybai_0-1784536137448.png ゴールドVIP Re: How to let S32G3 LLCE CAN driver run in freertos こんにちは、 @Jimmybai 投稿ありがとうございます。 よろしければ、お使いのシステム構成を教えていただけますか? 1. テストで使用したLLCEのバージョンは何ですか?使用したRTDのバージョンは何ですか?(RTD4.4.4は存在しないため) 2. では、RDB3上のFreeRTOS内にCAN2CANアプリケーションを実装したいのですか? BR チェイン Re: How to let S32G3 LLCE CAN driver run in freertos こんにちは、チェンインさん 実際、あなたのRTDバージョンが何を指しているのか分かりません。もしかしてLLCE RTDのことでしょうか?LLCE環境のセットアップ方法についてはほとんど知識がありません。私のセットアップはS32G399Aベンチで、S32G3 RTDは4.0.0です。セットアップとダウンロードの位置におすすめのLLCEとRTDのバージョンS32G399A教えてもらえますか?本当に、S32G3用のLLCE設定ガイドが必要なんです。ありがとう。 Re: How to let S32G3 LLCE CAN driver run in freertos こんにちは、 @Jimmybai ご返信ありがとうございます。 専用のバージョン依存関係がない場合は、まず AN13423 を参考にしてS32GプラットフォームでのCAN2CAN基本的な使い方を学ぶことをお勧めします BR チェイン
記事全体を表示
用于 PA 的 Code Warrior 10.5.1 - 安装新软件无效 我已安装了适用于 PA 10.5.1 的 Code Warrior,正在尝试添加 QCVS(用于 RCW 工作)。安装是以全新的方式进行的。 当我尝试使用 "安装新软件 "时,出现了错误。 请帮帮我。 此外,指向任何离线安装代码包的链接对我都不起作用(它们会将我带回恩智浦Code Warrior的主页)。 仅供参考--如果我尝试在网络浏览器中导航到任何更新位置,我都会得到 "未找到页面 "的提示。 生成的错误是 有些站点无法找到。详情请查看错误日志。无法读取http://freescale.com/lgfiles/updates/Eclipse/PA10_5_1/com.freescale.pa.pkt_win/content.xml 上的版本库。远程主机在握手过程中关闭连接 无法读取http://freescale.com/lgfiles/updates/Eclipse/PA10_5_1/com.freescale.pa.buildtools_win/content.xml 上的版本库。远程主机在握手过程中关闭连接 无法读取http://freescale.com/lgfiles/updates/Eclipse/PA10_5_1/com.freescale.pa.qcvs_win/content.xml 上的版本库。远程主机在握手过程中关闭连接 无法读取http://freescale.com/lgfiles/updates/Eclipse/PA10_5_1/com.freescale.pa.updatesite_win/content.xml 上的版本库。远程主机在握手过程中关闭连接 Re: Code Warrior 10.5.1 for PA - Install New Software not working 但我还是无法获得该工具 错误信息如下 image.png Re: Code Warrior 10.5.1 for PA - Install New Software not working 我修改了安装新软件工具获取新软件的位置,因为它仍然指向旧的 freescale.com 地址,所以我能够让它正常工作。如果您进入帮助 -> 安装新软件......然后单击"可用软件站点" ,然后将某些位置更新为来自飞思卡尔的 nxp,包括 QCVS,您应该可以获得该工具。 petes1_3-1758000269386.png petes1_2-1758000206672.png petes1_1-1758000123163.png Re: Code Warrior 10.5.1 for PA - Install New Software not working 你好,你能把 QCVS 离线软件包发给我吗,谢谢 Re: Code Warrior 10.5.1 for PA - Install New Software not working 我使用了以下链接 https://nxp.flexnetoperations.com/control/frse/download?agree=Accept&element=6529687&dkey=9017647 但这对你是行不通的。 你应该 0. 登录 nxp 1.打开票据支持 2.从支持中心获取链接 3.支持 ->点击代码 -> 点击下载,批准承诺,然后进入下一个程序: 即上述链接。 有效期为几天。 Re: Code Warrior 10.5.1 for PA - Install New Software not working 我怎样才能得到一份拷贝,那些网站还在关闭....。 Re: Code Warrior 10.5.1 for PA - Install New Software not working 请将离线安装文件发给我,非常感谢! Re: Code Warrior 10.5.1 for PA - Install New Software not working 请将离线安装文件发给我,非常感谢!还有 Re: Code Warrior 10.5.1 for PA - Install New Software not working 我已经有一个了,非常感谢! Re: Code Warrior 10.5.1 for PA - Install New Software not working 请将离线安装文件发给我,非常感谢! Re: Code Warrior 10.5.1 for PA - Install New Software not working 实际上,我在这里找到了 PA 4.5 的 QCVS,并成功添加到了 codewarior-10.5.1。 附上该位置的截图。这可能对其他人有用。 Re: Code Warrior 10.5.1 for PA - Install New Software not working 您好, 感谢您提供离线安装文件。我已经安装了这个软件,现在可以在 Code Warrior 10.5.1 中使用。 请注意,我需要在安装过程中取消选择"联系所有更新站点以查找所需的软件" 选项,否则安装会失败并出现错误。 再次感谢 Re: Code Warrior 10.5.1 for PA - Install New Software not working 我已经向你赠送了 CodeWarrior for Power Architectures Rev 4.5 的 QCVS 离线软件包,请注意你的邮箱进行下载。 下载适用于 PA 4.5 的 QCVS 后,请打开适用于 PA 10.5.1 IDE 的 CodeWarrior,然后从 " Help-> 安装新软件-> Add-> Archive " 中安装 QCVS 代码包 Re: Code Warrior 10.5.1 for PA - Install New Software not working 我在这方面取得了一些进展。 安装新软件失效是因为 CodeWarrior 安装程序仍将下载网站设置为旧的 "freescale.com"。我已编辑并替换为 "cache.nxp.com"。这些信息很难找到!QCVS 安装程序现在可以运行,但会产生 MD5 哈希值错误(见附件)。运行任何更新站点(版本工具、eclipse 等)时也会发生这种情况。在其他版本的 CodeWarrior 中也是如此(我们也有 v10.3)。我该如何解决这个问题? Re: Code Warrior 10.5.1 for PA - Install New Software not working 嗨,感谢您的回答。QoriQ 配置和验证套件没有出现在我的恩智浦软件列表中。也没有出现在代码勇士列表中。请参见所附截图。我目前使用的是 Code Warrior 10.5.1 的评估版。我们有 Code Warrior 10.3 的授权版本,但尚未升级。Code Warrior 的在线文档说 QCVS 是免费的(未经许可),所以我想尝试一下并开始研究我们基于 QorIQ T 系列的板的 PBL/RCW 配置。如何在我的代码勇士中获取 QCVS?再次感谢。 Re: Code Warrior 10.5.1 for PA - Install New Software not working 您可以从恩智浦公共网站下载 QCVS for Power Architectures Rev 4.5。 请登录 " www.nxp.com ",然后从 " 我的恩智浦账户下载安装文件-> 软件许可和支持-> 查看账户-> 恩智浦软件-> QorIQ 配置和验证支持套件-> 4.5 QCVS 离线适用于电源架构的 CodeWarrior Rev 4.5 的安装代码包”。 下载适用于 PA 4.5 的 QCVS 后,请打开适用于 PA 10.5.1 IDE 的 CodeWarrior,然后从 " Help-> 安装新软件-> Add-> Archive " 中安装 QCVS 代码包。 然后重新打开 CodeWarrior IDE,从"File->New->QorIQ Configuration Project" 中创建一个 QCVS PBL 项目,请输入"项目名称" 并选择要使用的处理器,点击下一步。然后在"工具集选择" 面板中,请选择"PBL - Preboot Loader RCW 配置" Re: Code Warrior 10.5.1 for PA - Install New Software not working 你好,你能把 QCVS 离线软件包发给我吗。 谢谢! Re: Code Warrior 10.5.1 for PA - Install New Software not working 你好,请问可以发一个给我吗? Re: Code Warrior 10.5.1 for PA - Install New Software not working 你好, 打开 CodeWarrior for PA 10.5.1 IDE,然后在“帮助->安装新软件->添加”中添加以下存储库以安装 QCVS。 http://cache.nxp.com/lgfiles/updates/Eclipse/PA10_5_1/com.freescale.pa.qcvs_win
記事全体を表示
ライセンス更新申請 – S32 Design Studio for Power Architecture 2017.R1(ライセンス期限切れ間もなく) 親愛なるNXPサポートチームへ、 現在、S32 Design Studio for Power Architecture バージョン 2017.R1(ビルドID: 171018)を使っています。私のライセンス(アクティベーションコード:[4C46-757C-2641-913E])は数日後に期限切れになります。ツールを中断せずに使い続けられるように、更新を手伝ってもらえますか? 既にNXPアカウントにログインし、ライセンスの状態を確認済みです。他に何か情報が必要な場合はお知らせください。 再開まで今しばらくお待ちください。 よろしくお願いします、 [zt] アクティベーションID: 4C46-757C-2641-913E Re: License Renewal Request – S32 Design Studio for Power Architecture 2017.R1 (License about to exp こんにちは、 お客様のS32DSライセンスが延長されました。以前使用していたコードを使って、S32DSを再度有効化してください。
記事全体を表示
s32k324 write Dflash problem I used S32DS3.5 + RTD2.0 to develop S32K324. Now I wrote the program for the S32K324 based on the configuration and code in the example "Fee_Example_S32K344" and it compiled. but when it ran, the program would report an error as soon as it enters this code" Fls_Init(NULL_PTR);", when I step into it , I found it could not Skip this function " Fls_IPW_Init();". And the err made the program enter this function " static inline void DevAssert(volatile boolean x) { if(x) { } else { for(;;) {ASM_KEYWORD(BREAKPOINT_INSTR);} } }" So I guess if the RTD version doesn't support S32K324 to use the fee function model ? Or could give me some other examples to write Dflash by eeprom mode of S32k324. Thanks. Re: s32k324 write Dflash problem Since all the project engineering was created based on RTD2.0, the migration might not be very convenient. It would be best if RTD2.0 could modify and use the Fee. Could you please help me review the program? Re: s32k324 write Dflash problem Does the Fls_IPW_Init() generated by S32DS and is there any error log can be printed out? Re: s32k324 write Dflash problem Hi @mmyjh_123, Can you share the project or at least the .mex file? Also, you use a very old RTD. I would recommended upgrading to RTD 7.0.1. Thank you, BR, Daniel Re: s32k324 write Dflash problem Hi @mmyjh_123, You have two options. 1. Either change it to VARIANT-PRE-COMPILE danielmartynek_0-1784639285437.png And call it as you do: Fls_Init(NULL_PTR); 2. Or select VARIANT-POST-BUILD instead and call: Fls_Init(&Fls_Config_BOARD_InitPeripherals); Regards, Daniel Re: s32k324 write Dflash problem Oh, I got it,thanks.
記事全体を表示
RAppID Init for MPC564xL 的许可证 RAppID 已下载,但信息显示为 E0002,如下所示,这是什么意思? db16122_0-1784695484095.png
記事全体を表示
license for RAppID Init for MPC564xL The RAppID has been downloaded while the information show E0002 as below, what does this means db16122_0-1784695484095.png
記事全体を表示
PCA9640A ドライバのソースコードおよびuPowerファームウェアソフトウェアパッケージ こんにちは、 現在はiMX8ULPプロセッサを搭載したカスタムハードウェアを使用し、PMIC PCA9640A使っています。 キャリアカードの要件に合わせてPMICのソースコードにいくつか変更を加えなければなりません。 確認中に、 https://www.nxp.com/docs/en/user-guide/uPower_USERS_GUIDE.pdf のドキュメントに従って uPower.bin をカスタムビルドするためのドキュメントを見つけました。 この文書では、riscvを使用してクロスコンパイルすることについて言及されています。詳細はセクション10.3.1「uPowerソフトウェアビルド環境の準備」を参照してください ここで言及されているのは、NXPのリリースパッケージにはPCA9460ドライバーのソースコードと基本的なuPowerファームウェアの静的ライブラリが含まれています。ユーザーが他のPMICチップを使用する場合、PMICドライバーの移植は難しくありません。 このソフトウェアパッケージを、PCA9460ドライバーのソースコードとuPowerファームウェアのスタティックライブラリが入っている場所がわかりません。 このソフトウェアパッケージを正しく入手する方法を教えてください。SOすれば、適切に改造がCANできます。 よろしくお願いいたします。 アジット・アリ Re: PCA9640A driver source code and uPower firmware software package こんにちは、 @Ajith_Ali さん。 お元気でお過ごしのことと思います。 もちろんです。Embedded Linux for i.MX Applications Processors のウェブページをご覧ください。 uPowerファームウェア移植キット1.3.1があります。 Manuel_Salas_0-1784745367765.png 中にはPMIC_driverの移植ガイドとuPowerファームウェアのバイナリファイルが含まれています。 uPowerファームウェアポーティングキット1.3.1の直接ダウンロードリンク。 よろしくお願いいたします。 サラス。
記事全体を表示
The S32K148 has secure boot functionality, but the bootloader fails to start after JTAG is disabled. Dear NXP, hello: Our company's K148 has two partitions: a bootloader and an application partition. The application partition has a function to disable JTAG. When JTAG is disabled in the application, the bootloader fails to start after a reset, causing the chip to become bricked. Investigation revealed that the bootloader is 32KB, ranging from 0x00 to 0x8000. Disabling JTAG involved writing 0xFFu , 0xFFu , 0xFFu , 0xFFu , 0xFCu, 0x7Fu , 0xFFu , 0xFFu at address 0x408 , causing a change in the flash content. After a reset, the CSEc calculates a different boot_mac value for the bootloader, resulting in the bricking. Does NXP have any mature solutions to resolve this issue? Thank you. Re: S32K148有secureboot功能,但是bootloader在jtag关闭后起不来 K148的key槽.png Hi, @lukaszadrapa According to the manual above, BOOT_MAC is a one-time, irreversible write. Is there an official API that allows changing its value? If so, could you provide this API? Re: 晶振波形异常 Using your company's FS32K144HFT0MLHT MC IMG_20260718_141710.jpg The crystal oscillator is an 8MHz passive crystal oscillator (AV08000009), and the waveform is abnormal. Is this waveform acceptable for your company's MCU, and will it affect normal operation? Re: S32K148有secureboot功能,但是bootloader在jtag关闭后起不来 Hi @vurtual  The common approach is to disable the debug interface during manufacturing, rather than later from the application. In that case, the process can be done in a single production step: reprogram the Flash Configuration Field (FCF) to disable the debug port and then provision the correct BOOT_MAC value (or allow the CSEc to calculate it automatically after the next reset). If you need to disable the debug interface later in the product lifecycle, that is also possible. However, once the FCF is reprogrammed, the BOOT_MAC must be updated as well, since the secure boot calculation includes the modified FCF contents. Otherwise, the secure boot verification will fail. The BOOT_MAC can be updated using the standard SHE memory update protocol, in the same way that CSEc keys are updated. After updating the BOOT_MAC to match the new FCF contents, secure boot should operate correctly with the debug port disabled. Regards, Lukas Re: S32K148有secureboot功能,但是bootloader在jtag关闭后起不来 Hi @vurtual  Where do you see that this is an irreversible operation? That is not correct. BOOT_MAC can be updated.  As I mentioned previously: "The BOOT_MAC can be updated using the standard SHE memory update protocol, in the same way that CSEc keys are updated." This means you can use the CMD_LOAD_KEY command, which is the same command used to import and update regular SHE/CSEc keys. To update BOOT_MAC, you need to generate the M1–M5 values according to the standard SHE key update procedure. The key counter must be incremented, and the update can be authorized using either the MASTER_ECU_KEY or the BOOT_MAC_KEY. Therefore, updating BOOT_MAC is a supported operation and is not irreversible. Regards, Lukas Re: 晶振波形异常 Hello,@ lukaszadrapa Our company uses your FS32K144HFT0MLHT MCU with an 8MHz passive crystal oscillator (AV08000009), and the waveform is abnormal. Is this crystal oscillator waveform acceptable for your MCU? Will it affect the normal operation of the MCU? Thank you. IMG_20260718_141710.jpg Re: 晶振波形异常 Please create new thread for this. Thank you.  Re: 晶振波形异常 OK ,Thank you.
記事全体を表示
S32DS.3.xIDE病毒已检查并删除 在安装和更新 S32DS.3.5 IDE 时,我遇到了 Alyac 病毒检查并将其删除的情况。这些症状之前有人知道吗?造成这种情况的原因是什么?有没有解决办法? Re: S32DS.3.x IDE virus checked and deleted 你好, 说实话,我还是第一次看到这样的信息。可能是您的安装程序已损坏,或者防病毒软件存在问题。 Re: S32DS.3.x IDE virus checked and deleted JungkyuHan1_0-1784698236917.png 检测到勒索软件并删除了邮件
記事全体を表示
S32K148はセキュアブート機能を備えているが、JTAGを無効にするとブートローダーが起動しない。 NXP様、こんにちは。 弊社のK148には、ブートローダーとアプリケーションパーティションの2つのパーティションがあります。アプリケーションパーティションには、JTAGを無効にする機能があります。アプリケーションでJTAGを無効にすると、リセット後にブートローダーが起動せず、チップが動作不能になります。調査の結果、ブートローダーは32KBで、アドレス0x00から0x8000の範囲であることが判明しました。JTAGを無効にするには、アドレス0x408に0xFFu 、0xFFu 、 0xFFu 、 0xFFu 、 0xFCu 、 0x7Fu 、 0xFFu 、 0xFFuを書き込む必要があり、これによりフラッシュメモリの内容が変更されます。リセット後、CSEcがブートローダーに対して異なるboot_mac値を計算してしまうため、チップが動作不能になります。NXPは、この問題を解決するための成熟したソリューションを提供していますでしょうか?よろしくお願いいたします。 Re: S32K148有secureboot功能,但是bootloader在jtag关闭后起不来 K148的key槽.png こんにちは、 @lukaszadrapa 上記のマニュアルによると、 BOOT_MACは一度だけ書き込まれる不可逆的な値です。この値を変更できる公式APIはありますか?もしあれば、そのAPIを提供していただけますか? Re: 晶振波形异常 御社のFS32K144HFT0MLHT MCを使用しています IMG_20260718_141710.jpg水晶発振器は8MHzの受動型水晶発振器(AV08000009)ですが、波形が異常です。この波形は貴社製MCUにとって許容範囲内でしょうか?また、正常な動作に影響はありますか? Re: S32K148有secureboot功能,但是bootloader在jtag关闭后起不来 こんにちは@vurtual 一般的な方法は、デバッグインターフェースを製造時に無効にすることであり、アプリケーションから後から無効化するのではなく、その場合、このプロセスは単一の生産ステップで完了します:フラッシュ構成フィールド(FCF)を再プログラムしてデバッグポートを無効化し、正しいBOOT_MAC値をプロビジョニングするか(または次のリセット後にCSEcが自動的に計算できるようにします)。 製品ライフサイクルの後半でデバッグインターフェースを無効化する必要がある場合も可能です。しかし、FCFが再プログラムされると、セキュアブートの計算には変更されたFCFの内容が含まれるため、BOOT_MACも更新する必要があります。そうしないと、セキュアブートの検証が失敗します。 BOOT_MACは標準的なSHEメモリ更新プロトコルを用いて更新可能で、CSEcキーの更新と同じ方法で行えます。BOOT_MACを新しいFCFの内容に合わせて更新した後、デバッグポートを無効にした状態でセキュアブートが正しく動作するはずです。 よろしくお願いいたします。 ルーカス Re: 晶振波形异常 この件のために新しいThreadを作成してください。ありがとう。 Re: 晶振波形异常 こんにちは、@ ルカシャドラパ 弊社では、貴社製FS32K144HFT0MLHTマイコンを8MHzのパッシブ水晶発振器(AV08000009)と組み合わせて使用していますが、波形が異常です。この水晶発振器の波形は貴社製マイコンにとって許容範囲内でしょうか?また、マイコンの正常な動作に影響はありますか?よろしくお願いいたします。 IMG_20260718_141710.jpg Re: S32K148有secureboot功能,但是bootloader在jtag关闭后起不来 こんにちは@vurtual これが不可逆的な操作であると、あなたはどこにお考えですか?それは正しくありません。BOOT_MAC更新可能です。 以前にも述べたように: 「BOOT_MACは標準的なSHEメモリ更新プロトコルで更新できます。CSEcキーの更新と同じ方法です。」 つまり、通常のSHE/CSEcキーのインポートや更新に使われるCMD_LOAD_KEYコマンドを使えます。 BOOT_MACを更新するには、標準のSHEキー更新手順に従ってM1~M5の値を生成する必要があります。キーカウンターは増分されなければならず、更新はMASTER_ECU_KEYまたはBOOT_MAC_KEYのいずれかで承認できます。 したがって、BOOT_MACの更新はサポートされている操作であり、元に戻せない操作ではありません。 よろしくお願いいたします。 ルーカス Re: 晶振波形异常 はい、ありがとうございます。
記事全体を表示
S32 Design Studio for Power Architecture 2017.R1 许可证续期申请(许可证即将到期) 尊敬的恩智浦技术支持团队: 我目前使用的是 S32 Design Studio for Power Architecture 版本 2017.R1(内部版本号:171018)。我的许可证(激活码:[4C46-757C-2641-913E])几天后就要到期了。请问您能否帮我续订一下,以便我能继续不间断地使用该工具? 我已经登录了我的NXP账户并确认了许可证状态。如果您需要任何其他信息,请告诉我。 感谢您的支持。 此致, [zt] 激活ID:4C46-757C-2641-913E Re: License Renewal Request – S32 Design Studio for Power Architecture 2017.R1 (License about to exp 你好, 您的S32DS许可证已延期。请使用您之前的激活码重新激活S32DS。
記事全体を表示
PCA9640A driver source code and uPower firmware software package Hi, Currently I am using custom hardware with iMX8ULP processor and I am using PCA9640A PMIC. I have to modify some changes in the PMIC source code according to my career card requirement. While checking I found a document to custom build uPower.bin following the document https://www.nxp.com/docs/en/user-guide/uPower_USERS_GUIDE.pdf In this document, it has been mentioned to cross compile using riscv. Please refer section 10.3.1 Preparing the uPower software build environment  Here it is been mentioned that NXP release a package includes the PCA9460 driver source code and basic uPower firmware static library. If the user uses other PMIC chips, it is not difficult to port the PMIC driver. I am not sure where to get this software package with PCA9460 driver source code and uPower firmware static library. Please help me in the right way to get this software package so that i can do my modifications accordingly. Regards, Ajith Ali Re: PCA9640A driver source code and uPower firmware software package Hello @Ajith_Ali  Hope you are doing very well. Sure, please take a look to the Embedded Linux for i.MX Applications Processors web page. There is the uPower Firmware Porting Kit 1.3.1: Manuel_Salas_0-1784745367765.png Inside is the PMIC_driver Porting guide and the uPower firmware binaries. Direct download link of the uPower Firmware Porting Kit 1.3.1. Best regards, Salas.
記事全体を表示
License Renewal Request – S32 Design Studio for Power Architecture 2017.R1 (License about to expire) Dear NXP Support Team, I am currently using S32 Design Studio for Power Architecture Version 2017.R1 (Build id: 171018). My license (Activation Code: [4C46-757C-2641-913E]) is about to expire in a few days. Could you please help me renew it so that I can continue using the tool without interruption? I have already logged into my NXP account and confirmed the license status. Please let me know if you need any additional information. Thank you for your support. Best regards, [zt] ActivationId: 4C46-757C-2641-913E Re: License Renewal Request – S32 Design Studio for Power Architecture 2017.R1 (License about to exp Hi,  your S32DS license has been extended. Please activate S32DS again with your old code. 
記事全体を表示
PCA9640A 驱动程序源代码和 uPower 固件软件包 您好, 目前我使用的是定制硬件,处理器为 iMX8ULP,电源管理芯片为 PCA9640A。 根据我的职业卡要求,我需要对 PMIC 源代码进行一些修改。 在查找资料时,我找到了一份关于如何按照文档https://www.nxp.com/docs/en/user-guide/uPower_USERS_GUIDE.pdf自定义构建 uPower.bin 的文档。 本文档中提到了使用 riscv 进行交叉编译。请参阅10.3.1 节“准备 uPower 软件构建环境”。 这里提到,NXP 发布的软件包包含 PCA9460 驱动程序源代码和基本的 uPower 固件静态库。如果用户使用其他 PMIC 芯片,移植 PMIC 驱动程序并不困难。 我不确定在哪里可以找到包含 PCA9460 驱动程序源代码和 uPower 固件静态库的软件包。 请帮我找到获取这个软件包的正确方法,以便我能进行相应的修改。 此致, 阿吉特·阿里 Re: PCA9640A driver source code and uPower firmware software package 你好@Ajith_Ali 希望你一切都好。 当然,请查看i.MX 应用处理器的嵌入式 Linux网页。 uPower固件移植工具包1.3.1: Manuel_Salas_0-1784745367765.png 其中包含 PMIC_driver 移植指南和 uPower 固件二进制文件。 uPower固件移植套件1.3.1的直接下载链接。 顺祝商祺! 萨拉斯。
記事全体を表示
MPC564xL用RAppID Initのライセンス RAppIDがダウンロードされましたが、情報には以下のようにE0002と表示されています。これはどういう意味ですか? db16122_0-1784695484095.png
記事全体を表示