Multi Source Translation Content

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

Multi Source Translation Content

讨论

排序依据:
KE18F512VLH16 ECC RAM Single Bit Correction I have a follow up question related to @sean_dvorscak's post the other day (KE1 ECC RAM Single Bit Corrrection). @Celeste_Liu replied, ->> If implementing an optional scrub, please align the access according to the actual access size or scrub granularity, not blindly to the raw MCM_LMFAR value. Also don't use a fixed 4-byte access unless you first align the address appropriately and confirm the access size is valid. Can MCM_LMFATR[PEFSIZE] be used to determine the access size? If so, can this be used in tandem with MCM_LMFAR to implement a read-correct-writeback operation? For example, if MCM_LMFATR[PEFSIZE] is 3'b000 indicating an 8-bit access, can I perform an 8-bit read from the address indicated by MCM_LMFAR then perform an 8-bit write to the same address to correct the error. Similarly, if MCM_LMFATR[PEFSIZE] is 3'b010 indicating a 32-bit access, can I perform a 32-bit write to the address indicated by MCM_LMFAR without worrying about alignment? Re: KE18F512VLH16 ECC RAM Single Bit Correction Hello @rseigle77 , I have seen your post. Let me spend some time investigating this issue, and I will get back to you once I have more information. BR Celeste
查看全文
Regression/bug in U-Boot USB ID vs mainline Hello, `commit a5c91319731f ("MLK-25803-2: Update VID/PID")`, in U-Boot lf-6.18.20-2.0.0 branch,  introduces a regression in any user of USB. It forces a hard-coded USB product ID, instead of taking the value from the configuration. This is breaking any board that is using a different value from 0x0151. The issue is happening when using this U-Boot branch with non-NXP boards (using NXP SoC). This value needs to come from the configuration, and not be hard-coded. The following patch fixes the problem, can you apply it to your branch? ``` diff --git a/arch/arm/mach-imx/spl.c b/arch/arm/mach-imx/spl.c index 165cc82d9c72..46e26d138cf9 100644 --- a/arch/arm/mach-imx/spl.c +++ b/arch/arm/mach-imx/spl.c @@ -199,7 +199,7 @@ int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name) snprintf(serial_string, sizeof(serial_string), "%08x%08x", serialnr.high, serialnr.low); g_dnl_set_serialnumber(serial_string); #endif - put_unaligned(0x0151, &dev->idProduct); + put_unaligned(CONFIG_USB_GADGET_PRODUCT_NUM + 0xfff, &dev->idProduct); return 0; } ``` Re: Regression/bug in U-Boot USB ID vs mainline The issue is not your specific NXP needs that you just described. The issue is that hard coding the number in the code is preventing any user to configure it from the kconfig, as it is designed to be and effectively creating a regression. That change is disregarding any existing user that has a different need, actively breaking working use cases. Just grep for CONFIG_USB_GADGET_PRODUCT_NUM in the code and you'll see the multiple use cases this is breaking. You need to have a different solution that is not introducing a regression. Re: Regression/bug in U-Boot USB ID vs mainline Hello,  The change was intentional,  VID 0x525 and PID 0xa4a5 already registered as PLX Technology, Inc. Linux-USB File-backed Storage Gadget But fastboot device is not mass storage devices windowns 10 latest update already cached above vid/pid Change to use Freescale VID 0x1fc9 PID 0x151, for SPL SDP HID download PID 0x152, for Fastboot PID 0x153, for Kernel fastboot Need update uuu above 1.4.182 
查看全文
无法在 MCIMX8Q!XP-CPU (Si B0) 上获取串口控制台或启动 Linux 系统 - UART 接口仅输出乱码。 你好, 我在启动MCIMX8QXP-CPU(硅版本 B0)板时遇到问题。 硬件: MCIMX8QXP-CPU(Si B0) MCIMX8-8X-BB 踢脚板 IMX-LVDS-HDMI 适配器连接到 J1 套装内附带的原装 16GB SD 卡 我还尝试了一张新刷入官方 Linux BSP(L6.18.20 / MX8QXPC0 镜像)的 32 GB SD 卡。 问题: 串行控制台(J11)始终只显示乱码字符(□□□□),地址为 115200 8N1。 尝试了多个 COM 端口 尝试过不同的终端软件(PuTTY、Docklight) 在两台不同的Windows笔记本电脑上都试过了。 已安装最新的 FTDI VCP 驱动程序 使用原装套件SD卡和新刷机的SD卡,结果相同。 UUU始终无法在串行下载模式下检测到电路板(SW2 = 1000)。uuu -lsusb显示没有设备。下载模式下,主板未出现在设备管理器中。 HDMI – 目前没有显示输出(在 J1 上使用 IMX-LVDS-HDMI)。 尝试的启动开关: SD卡启动:SW2 = 开 开 关 关 串口下载:SW2 = 开 关 关 关 eMMC:SW2 = 关闭 开启 关闭 关闭 我已经完成了以下工作: 使用 Balena Etcher 和 Rufus 刷入了官方的.SD 卡镜像。 已确认SD卡已正确插入J12插槽 二手原装电源 检查了多根用于调试端口的 USB 线缆 请问有人能提供一些建议吗? Si B0 开发板在调试 UART 方面是否存在已知问题? 还有其他步骤可以获得清晰的控制台输出吗? 恢复/验证主板是否健康的推荐方法是什么?    HW-开源 i.MX 8 系列 | i.MX 8QuadMax (8QM) | 8QuadPlus
查看全文
虚拟机 vm mc9s08qg8 NXP支持Windows 11上的虚拟机吗?我想建一个 vm 然后下载 cw(经典 IDE)v5.2 这样我就可以使用我的 wiztronics 烧录板了!这能用NXP软件实现吗?你支持这一行动吗!!!!!!! Re: virtual machine vm mc9s08qg8 Hello 不建议使用虚拟机,我们无法保证在虚拟机内运行 IDE 中的工具时能够正常运行; 推荐的做法是在受支持的操作系统上以原生方式安装该工具,并使用相应的版本。在本例中,Windows 11 的 CodeWarrior 版本为 11.1。 顺祝商祺!
查看全文
家をリノベーションしましょう 皆さん、こんにちは。 100平方メートルの家をどうやってリノベーションし、必要なだけスマートにするか考え始めたところです。家はかなり大規模なリノベーション(床暖房、エアコン、電動シャッターなど)を行う予定なので、ついでに何かをセットアップできます。私はエンジニアなので、システムをいじって動かすことに全く問題はありません。見てみると、最も経済的で汎用性の高い解決策は、すでに持っているRaspberry PiでHome Assistantをローカルに動かし、必要なすべてのデバイスを揃え、5〜7インチのディスプレイですべてを見たり操作したりすることです。プロトコルについて迷っています。Wi-Fiベースのプロトコルを使うべきか、それとも有線接続(KNXと聞いたのですが?)を使うべきか…。有線接続の方が効率的だとは思うのですが、その分コストも高くなります。それだけの価値はあるのか?リノベーション中だけどスマートホームの仕組みにあまり詳しくない人への追加のアドバイスはありますか? Re: Renovate your home こんにちは、 @ozipin さん。 すべてのデバイスを連携させる通信方法は、あなたのニーズや要件によって大きく異なりますが、一般的にZigbeeのような特定のプロトコルはスマートホームのニーズをカバーするために作られているので、Zigbee対応のデバイスを調べることをおすすめします。これにより、有線通信と同等の信頼性を確保しつつ、はるかに高い柔軟性を実現し、コストを削減できるはずです。 ビルディング&ホームオートメーション |NXPセミコンダクターズのウェブページで、スマートホームを実現する方法について詳しく知ることができます。 BR、 エドウィン。
查看全文
CodeWarrior Build error Every so-often I get a build error:- mingw32-make: *** No rule to make target Dropbox//Projects/\Project_x/\Project_Headers/\../\Sources/\Events.c',                     needed by `Sources/Events_c.obj'.  Stop. The file Events_c.obj does, of course, exist, but the usual remedies do not work. I tried a Clean build, I deleted Events_c.obj', I deleted the whole Flash folder, I tried shutting down and re-starting but nothing worked. I ended up creating a new project and cut and pasted the source file content. This problem occurs once every few weeks and on a couple of occasions, after the computer was "sleeping", the problem cleared itself. Re: CodeWarrior Build error This sounds less like an issue with the .obj file itself and more like a stale or malformed dependency path in the generated Makefile. The Dropbox//Projects/\Project_x... path with the odd slashes is a big clue. I’d check whether the project is being built directly from a Dropbox-synced folder and try moving it to a local, non-synced directory. Also, compare the generated dependency/Makefile entries when the problem occurs with a working build. If the error disappears after the Dropbox folder syncs or the PC wakes, that would further point toward Dropbox/file-system timing rather than the source file.      Re: CodeWarrior Build error Thanks, the sync issue makes sense, but it will be a few days before I can try it. Re: CodeWarrior Build error Hello, Which version of CodeWarrior are you using? Does the Clean build that you tried is by using the commander>Clean (All)? When you move to a new project it works and after a few weeks happens again? Probably your make files doesn’t match according to your directory. Please try this to clean and make a re-creation of the make files On the Project view>Clean>Select your project to build   luis_maravilla_1-1787091476012.pngluis_maravilla_1-1787091476012.png Also, as a recommendation do not use the Dropbox folder, kindly change to a local path and add it or change it in the build directory. Please refer to this post for more information No rule to make target | MCU on Eclipse Best Regards, Luis
查看全文
FlexIO0 SPIコントローラーのTXシフター(SHIFTCTL, PINCFG=11b)は、SHIFTSにもかかわらず出力ピンを駆動しません 取締役会: FRDM-MCXN236(MCX N236、デュアルCortex-M33) ツールチェーン: MCUXpresso IDE 25.6.136,ベアメタルレジスタレベルC(SDK周辺機器ドライバーなし) RMの参考文献: MCX N23x リファレンスマニュアル Rev. 4、2025-03-05、第53章(FlexIO)、表453(SPIコントローラ、CPHA=0構成) 私が作っているもの: FlexIO0はRM表453に従いSPIコントローラとして構成:シフター2台(shifter0 = TX、shifter1 = RX)+タイマー1台(timer0 = SCK、デュアル8ビットカウンタボーモード)、SPI経由でBME280センサーを読み込みます。ピン: P1_0/P1_1/P1_2 は ALT6 (FLEXIO0_D8/D9/D10) に多重化され、PORT1->PCR の読み取りによって正しいことが確認されています。 観察: RXシフターとSCKタイマー出力はどちらも完全に動作します。SCKは正常にスケジュール通りに切り替わり(2つの独立したレジスタで確認済み、下記参照)、SHIFTSTAT/TIMSTATはすべての転送が正常に、時間通りに、エラーなく完了したことを報告します。しかし、 TXシフターの出力ピン(SDO、D8)は、私が思いつく限りのあらゆるバリエーションで、そこに何が書き込まれていても、電気的な動きを全く示しません。センサーからのチップIDレジスタの読み込みは常に 0x00 であり、期待される 0x60 ではありません(同じボード、同じセンサー、同じブート上の動作する FlexComm/LPSPI3 ドライバーが正しく読み取れます)。 レジスタ構成(RMテーブル453と完全に一致、PINSELは実際のピンに置き換えられています) SHIFTCFG0 = 0x0000_0000 (RM: 0000_0000h -- スタート/ストップビット無効) SHIFTCTL0 = 0x0083_0002 (RM: 0083_0002h、PINSEL=8 (実際のD8/SDOの場合)) デコード結果: TIMSEL=0、TIMPOL=1(負エッジ)、PINCFG=3(11b、駆動出力) PINSEL=8、PINPOL=0、SMOD=2(送信) -- すべてのフィールドがRMのものと照合されます 文字通りの例では、PINSELのみが置換されています。 SHIFTCFG1 = 0x0000_0000 SHIFTCTL1 = 0x0000_0101 (RM: 0000_0101h、PINSEL=10 (実際のD10/SDIの場合)) TIMCMP0 = RM独自の式に基づいて算出(8ビットフレーム、1MHz SCK用のボー分周器) TIMCFG0 = 0x0100_2222 (RMリテラル値、ピン置換不要) TIMCTL0 = 0x01C3_0201 (RM: 01C3_0201h、PINSEL=9 (実際のD9/SCKの場合)) 私が除外した可能性は、それぞれハードウェアの直接的な証拠(デバッガによるレジスタ/メモリの検査、オシロスコープは使用不可)に基づいている。 ピンマルチプレクサがALT6に到達していません -- PCRの読み取り結果から、使用されている4つのピンすべてでALT6の設定が正しいことが確認されました。 センサ/配線の故障――別の動作するFlexComm/LPSPI3 SPIドライバが同じ物理センサ、同じ起動時にチップID(0x60)を正しく読み取ります。 SCKは物理ピンで一度もトグルしなかった――同時にサンプリングされた2つの独立したレジスタ、FLEXIO0->PIN(ビット9)とGPIO1->PDIR(ビット1、完全に別の周辺ブロックで、FlexIO内部ロジックを経由しない)によってトグルが確認された。両者はリアルタイムで、サンプルごとに一致する。 SHIFTBUFBIS (ビットスワップされたエイリアスレジスタ) 内の TX バイトレーンの配置 -- 下位バイト、上位バイト (RM 53.3.1 から再導出) を試しました。シフトレジスタのマイクロアーキテクチャ記述(サマリーテーブルだけでなく)、バイトレーンに依存しない完全な32ビット交互書き込み(0xAAAAAAAA)など、すべて同一の永続的にフラットなSDOを生成します。 TXバッファアンダーラン(SHIFTERR)-- RX準備完了待機が成功した直後にキャプチャされ、毎回0x0(クリーン)を読み取ります。 ピン/パッド固有の障害 -- shifter0 の PINSEL をまったく異なる物理ピン (D8 ではなく D9) に再ターゲットしましたが、依然として平坦です。タイマーは、同一のPINCFG=11b「駆動出力」機構を使用して、どちらのピンも正しく駆動します。 「有効化時の暗黙的なロード」(RM 53.3.1:シフターの状態フラグは、「データがSHIFTBUFからシフターにロードされたとき、またはシフターが送信モード用に最初に構成されたとき」に設定されます。つまり、最初のサイクルでロードされた古いデータが存在する可能性があります)は、最初の転送を破棄し、続いてトレースされた明確な2番目の転送を行うことで除外されました。結果は同一で、フラットな状態でした。 SHIFTBUFBIS エイリアス書き込みパスの非対称性 -- SHIFTBUFBIS[0] の代わりに、エイリアスされていないプレーンな SHIFTBUF[0] レジスタを介して同じバイトレーン非依存パターンを書き込みました: 同じフラットな結果。 FLEXIO0->PINOUTD/PINOUTE/PINOUTDIS(グローバルなピンごとのソフトウェア出力オーバーライドレジスタ、RM 53.3.3)-- ライブ読み取りでは、動作中のSCKピンと動作していないSDOピンの両方で、すべてゼロが表示されます。これは、「タイマー/シフター構成によって制御されている」(通常の状態)ことを意味します。原因ではない。 FLEXIO0->PINの読み取り自体が信頼できない - 上記の#3を参照。GPIO1->PDIRを介して独立して確認済み。 Shifter0インスタンス固有の不具合 -- 代わりに、ビット単位で同一のSHIFTCTL値で構成されたshifter2を使用して、全く同じフラットな結果を再現しました。同じ失敗。特定のインスタンスに限った話ではありません。 RM 53.7.1.27の文書化された 2 段階の PINCFG 書き込みシーケンス (最初に 10b を書き込み、次に 11b に別途書き込み、最初の構成時の短い低グリッチを回避する) -- 直接適用: 同じフラットな結果。 また、この部分に関する唯一の公開されたマスクセットエラッタ文書(MCXN23x_0P21K Rev. 2.0)も確認しましたが、FlexIO関連の項目は一切ありません。また、NXP自身のFlexIO-SPIアプリケーションノート(AN12780)も確認しました。後者はRM表453がすでに記載しているもの以上の指針を加えていません。 質問: シフターの内部帳簿(SHIFTSTAT、SHIFTERR、TIMSTAT)は、すべてのテストで完全に正常で、スケジュールどおりで、エラーのない送信モード動作を報告しており、同じCSブラケットトランザクション内の複数の転送にわたってTX準備完了フラグが正しくクリアおよび再設定されています。これはRM 53.3.1によれば、真のタイマートリガーによるリロードでのみ発生するはずです。また、シフトクロック自体(同じPINCFG=11b「駆動出力」メカニズムですが、SHIFTCTLではなくTIMCTL経由)が物理ピンに正しく到達することが独立して証明されています。 レジスタレベルの設定がすべてRMテーブル453の具体的な例と完全に一致するにもかかわらず、シフタのSHIFTCTL.PINCFG=11b送信モード出力(タイマーの同じPINCFG=11b出力とは対照的に)がMCXN23xマスクセット上の割り当てられたピンに到達できないような、既知のシリコン動作、文書化されていない前提条件、またはRMのギャップは存在するのでしょうか? 必要であれば、レジスタレベルのプロジェクトソースコード全体と、完全な追記専用の調査ログ(試行したすべての仮説、すべての撤回、およびそれぞれの正確なハードウェア証拠)を喜んで共有します。     MCX N Re: FlexIO0 SPI-controller TX shifter (SHIFTCTL, PINCFG=11b) never drives its output pin, despite SH こんにちは、 @hafeezmhdさん 提供された情報に基づくと、 SHIFTCTL.PINCFG = 11b で送信モードに構成されたシフターが割り当てられたピンを駆動している間、同じFlexIOインスタンス上のタイマー出力が正常に動作することを妨げるような、既知のMCXN23xシリコンの制限、エラー、または文書化されたFlexIO要件は見当たりません。 タイマー出力が物理ピンに正しく到達していることが確認されており、FlexIOステータスフラグもシフターの正常な動作を示しているため、お客様が観察されている動作は、FlexIO SPI構成に関するドキュメントに記載されている通常の動作とは異なります。 この時点で、完全なソースコードと初期化シーケンス、および初期化後と転送直前に取得した完全なレジスタダンプを確認することが役立つでしょう。これは、レジスタ抜粋だけでは明らかにならない、微妙な構成上の依存関係を特定するのに役立つ可能性があります。 可能であればプロジェクトの情報源を教えていただければ、詳しくご覧いただけます。 BR ハリー
查看全文
S32K311NHT0MPAST During MCU sleep mode, should the GPIO output state be retained (latched) or reset to its default state?Please confirm Re: S32K311NHT0MPAST Hi During S32K3 standby mode the GPIO output state is retained (latched).  For more detail please read the discussion in Where does the program start running after S32K344 wakes up from standby? Best Regards, Robin
查看全文
virtual machine vm mc9s08qg8 does nxp support vm on windows 11 ? i want to build a vm and download cw(classic IDE) v5.2 so i can use my wiztronics burner board! Is this possible with NXP software. Do u support this action!!!!!!!! Re: virtual machine vm mc9s08qg8 Hello The usage of Virtual machines is not recommended, we cannot guarantee proper functionality when running tools in the IDE inside a virtual machine; The recommended path is to install the tool natively on a supported OS and using the corresponding version, In this case for windows 11 the CodeWarrior version is 11.1 Best Regards
查看全文
CodeWarriorのビルドエラー 時々ビルドエラーが出ます: mingw32-make: *** ターゲットにするルールはありません Dropbox//Projects/\Project_x/\Project_Headers/\../\Sources/\イベント情報.c',`Sources/Events_c.obj` で必要です。  停止。 ファイル Events_c.obj は確かに存在しますが、通常の対処法では解決しません。クリーンビルドを試しました。Events_c.obj を削除しました。Flashフォルダ全体を削除し、シャットダウンと再起動も試しましたが、何も効果がありませんでした。結局、新しいプロジェクトを作成し、ソースファイルの内容をコピー&ペーストしました。この問題は数週間に一度発生し、数回はコンピューターが「スリープ状態」になった後に自然に解消されました。 Re: CodeWarrior Build error ありがとうございます。同期の問題は納得できますが、試せるまで数日かかりそうです。 Re: CodeWarrior Build error これは.objファイルの問題というよりは、ファイル自体、あるいは生成された Makefile 内の古いまたは不正な依存関係パスのようなものです。Dropbox//Projects/\Project_x... というパスに奇妙なスラッシュが含まれていることが大きな手がかりです。プロジェクトがDropboxと同期されたフォルダから直接ビルドされているかどうかを確認し、ローカルの同期されていないディレクトリに移動してみてください。また、問題が発生した際に生成された依存関係/Makefileのエントリを、正常にビルドできた場合と比較してください。Dropboxフォルダの同期後、またはPCのスリープ解除後にエラーが解消される場合は、ソースファイルではなく、Dropbox/ファイルシステムのタイミングに問題がある可能性が高いでしょう。 Re: CodeWarrior Build error こんにちは、 CodeWarriorのどのバージョンを使用していますか? あなたが試したクリーンビルドは、コマンド>クリーン(すべて)を使用したものですか? 新しいプロジェクトに移るとうまくいくのに、数週間後にまた同じことが起こる? おそらく、あなたのMakefileがディレクトリに合わせていないのでしょう。 メイクファイルをクリーンアップして再作成するには、以下の手順をお試しください。 プロジェクトビューで > クリーン > ビルドするプロジェクトを選択   luis_maravilla_1-1787091476012.pngluis_maravilla_1-1787091476012.png また、推奨事項として、Dropboxフォルダは使用せず、ローカルパスに変更してビルドディレクトリに追加または変更してください。 詳細はこの投稿をご覧ください。 ターゲットにするルールはありません |MCUのエクリプス 敬具、ルイス
查看全文
Renovate your home Hi everyone, I'm just starting to think about how to renovate a 100-square-meter house and make it as smart as I need. The house will be undergoing a fairly extensive renovation (underfloor heating, air conditioning, electric shutters, etc.), so I can set something up while I'm at it. I'm an engineer, so I have no problem messing around with some system to get it working. Looking around, I think the most economical and versatile solution is to have Home Assistant running locally on a Raspberry Pi (which I already have) and then all the devices I need, with a 5-7 inch display from which I can view and control everything. I'm unsure about the protocol: should I rely on Wi-Fi-based protocols or something wired (I read KNX?)? Obviously, I think wired is more efficient, but also more expensive. Is it worth it? Do you have any additional advice for someone who's renovating but isn't very familiar with the ins and outs of the smart home world? Re: Renovate your home Hi @ozipin, The communication method to coordinate all devices really depends on your needs and requirements, but generally specific protocols like Zigbee were created precisely to cover the needs of smart homes, so I would suggest looking into Zigbee capable devices. This should provide similar reliability to wired communication, while allowing for much more flexibility and reducing the costs. I highly recommend taking a look at the Building and Home Automation | NXP Semiconductors webpage to get more insight on how our can enable your smart home. BR, Edwin.
查看全文
LX2160A JTAG (CCS) connection fails I'm trying to use DDR Tool with my LX2160A, but I can't connect. I think the cause is that the CCS cannot confirm the JTAG connection. Attach the result of the IDcode verification. KAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.png When I tried connecting a while ago, I was able to confirm a connection from JTAG, but the files were corrupted, and since revisions were not carefully managed, recovery was not possible. We are unaware that downloading from the internet via "check for update" can sometimes result in file corruption, and therefore we are currently unable to match the software's status. Since I was able to connect once, I suspect it might be a software issue. If you know a solution, please let me know. Thank you very much for your understanding. Re: LX2160AのJTAG(CCS)接続が失敗する Thank you for your reply. I performed the installation using "CodeWarrior for ARMv8 v11.5.0 b200629 Windows Offline Installer". After that, I tried updating using CodeWarrior IDE by selecting Help → Install New Software → Add → Archive and specifying com.freescale.armv8.11.5.12.GA.Win.updatesite.221209.zip, but an error occurred during installation. The error message is as follows: KAZU_ISHI_0-1786959225115.pngKAZU_ISHI_0-1786959225115.pngKAZU_ISHI_0-1786959225115.pngKAZU_ISHI_0-1786959225115.pngKAZU_ISHI_0-1786959225115.png An error occurred while installing the items session context was:(profile=epp.package.cpp, phase=org.eclipse.equinox.internal.p2.engine.phases.Install, operand=[R]com.freescale.core.debugger.fsl_gdb13.0.0.202003111126 --> [R]com.freescale.core.debugger.fsl_gdb14.0.0.202204131357, action=com.freescale.updater.customactions.actions.FreescaleProcessCheck). NLS missing message: param_not_set in: com.freescale.updater.customactions.Messages Could you please advise me on how to deal with this? Thank you very much for your understanding. Re: LX2160AのJTAG(CCS)接続が失敗する Please check whether you have installed the latest CodeWarrior for ARMv8 11.5.12. Please open CodeWarrior IDE and check the version from Help->About CodeWarrior Development Studio for QorIQ LS series - ARM V8 ISA. If you have already installed this version CodeWarrior, please plug off USB cable from CodeWarrior TAP and plug in again. Re: LX2160AのJTAG(CCS)接続が失敗する Thank you for your reply. The version information for CodeWarrior currently in use is as follows: CodeWarrior Development Studio for QorIQ LS series - ARM V8 ISA Version: 11.5.0 Build ID: 200629GA Compared to the latest version you provided, my environment appears to be running an older version. By the way, if I select "com.freescale.armv8.11.5.12.GA.Win.updatesite.221209.zip" via "Install New Software" → "Add" → "Archive", which items should I install? Selecting "Select All" results in an error and the installation fails. Re: LX2160AのJTAG(CCS)接続が失敗する Please install CW_ARMv8_v2020.06_b200629GA_Win_Offline.exe first, then open CodeWarrior IDE and install service pack com.freescale.armv8.11.5.12.GA.Win.updatesite.221209.zip from Help->Install New Software->Add->Archive. If your problem persists, please provide screenshot to show your error.
查看全文
S32K311NHT0MPAST MCUスリープモード中、GPIOの出力状態は保持(ラッチ)されるべきか、それともデフォルト状態にリセットすべきか?必ず確認してください Re: S32K311NHT0MPAST ハイ S32K3のスタンバイモード中は、GPIO出力状態が保持(ラッチ)されます。 詳細については、 「S32K344がスタンバイ状態から復帰した後、プログラムはどこで実行を開始しますか?」の議論を参照してください。 よろしくお願いいたします ロビン
查看全文
如何初始化J3H081智能卡 您好,我购买了一张J3H081 JCOP卡。 我还收到了 、 、 、 、 、 以及一条 APDU 线“ 00F0 0000 10 ” 我使用 GlobalPlatformPro 尝试了 APDU 线路,它返回 6A82。 我完全不知道如何初始化这张卡。 我没有说明书,我想学习如何编写Java卡的程序。 Re: How to initialize J3H081 SmartCard JCOP 是一款高度安全的元件产品,因此,所有技术支持、文档访问和软件/工具请求都必须通过您授权的 NXP 代理商处理。 请联系您向其购买 JCOP 卡的代理商。   此致敬礼, 阿隆德拉
查看全文
仮想マシン vm mc908qg8 NXPはWindows 11でVMをサポートしていますか?VMを構築して、CW(クラシックIDE)v5.2をダウンロードして、Wiztronicsのバーナーボードを使いたいと思っています!これはNXPのソフトウェアで可能でしょうか?この行動を支持しますか!!!!!!! Re: virtual machine vm mc9s08qg8 Hello 仮想マシンの使用は推奨されません。仮想マシン内でIDE内でツールを動かす際に適切な機能を保証することはできません。 推奨される方法は、サポートされているOSにネイティブインストールし、対応するバージョンを使うことです。この場合、Windows 11のCodeWarriorバージョンは11.1です よろしくお願いいたします。
查看全文
LX2160AのJTAG(CCS)接続が失敗する LX2160Aに対し、DDR toolの使用を考えていますが、Connectができません。 原因はCCSより、JTAGの接続が確認できないことだと思います。 IDcodeの確認結果を添付します。 KAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.pngKAZU_ISHI_0-1786615924736.png 少し前に接続を試した際はJTAGからの接続が確認できましたが、ファイルが破損してしまったことと、細かくリビジョンを管理しておらず復元できておりません。 check for Updateより、インターネットからダウンロードを実施するとファイルが破損するケースが存在することを把握しておらず、現在ソフトウェアの状態を一致させることができないでいます。 一度接続できたため、ソフトウェアの問題かと思いますが、解決方法をご存じでしたらご教授願います。 以上よろしくお願いいたします。 Re: LX2160AのJTAG(CCS)接続が失敗する まずCW_ARMv8_v2020.06_b200629GA_Win_Offline.exeをインストールし、その後CodeWarrior IDEを開き、Help->Install New Software->Add->Archiveからサービスパックcom.freescale.armv8.11.5.12.GA.Win.updatesite.221209.zipをインストールしてください。 問題が解決しない場合は、エラー画面のスクリーンショットをご提供ください。 Re: LX2160AのJTAG(CCS)接続が失敗する 最新版のCodeWarrior for ARMv8 11.5.12がインストールされているかどうか確認してください。 CodeWarrior IDEを開き、QorIQ LSシリーズ(ARM V8 ISA)のHelp->About CodeWarrior Development Studioのバージョンを確認してください。 既にこのバージョンのCodeWarriorをインストールしている場合は、CodeWarrior TAPからUSBケーブルを抜き、再度差し込んでください。 Re: LX2160AのJTAG(CCS)接続が失敗する ご返信ありがとうございます。 現在使用しているCodeWarriorのバージョン情報は以下の通りです。 CodeWarrior Development Studio for QorIQ LS series - ARM V8 ISA Version: 11.5.0 Build Id: 200629GA ご連絡いただいた最新バージョンと比較すると、私の環境は古いバージョンのようです。 ちなみに、「Install New Software」→「Add」→「Archive」から 「com.freescale.armv8.11.5.12.GA.Win.updatesite.221209.zip」を選択した場合、どの項目をインストールすればよいでしょうか。 「Select All」を選択すると、エラーが発生し、インストールが成功しません。 Re: LX2160AのJTAG(CCS)接続が失敗する ご返信ありがとうございます。 「CodeWarrior for ARMv8 v11.5.0 b200629 Windows Offline Installer」からインストールを実行しました。 その後、CodeWarrior IDEで、Help → Install New Software → Add → Archive から com.freescale.armv8.11.5.12.GA.Win.updatesite.221209.zip を指定して更新を試みましたが、インストール中にエラーが発生します。 エラーメッセージは以下の通りです KAZU_ISHI_0-1786959225115.pngKAZU_ISHI_0-1786959225115.png An error occurred while installing the items session context was:(profile=epp.package.cpp, phase=org.eclipse.equinox.internal.p2.engine.phases.Install, operand=[R]com.freescale.core.debugger.fsl_gdb 13.0.0.202003111126 --> [R]com.freescale.core.debugger.fsl_gdb 14.0.0.202204131357, action=com.freescale.updater.customactions.actions.FreescaleProcessCheck). NLS missing message: param_not_set in: com.freescale.updater.customactions.Messages 対処方法についてご教示いただけますでしょうか? 以上よろしくお願いいたします。
查看全文
J3H081スマートカードの初期化方法 こんにちは。J3H081 JCOPカードを購入しました。 私はまた、 、 、 、 、 、 を受け取りました。 そして1つのAPDUライン「 00F0 0000 10 」 GlobalPlatformProを使用してAPDUラインを試したところ、6A82が返されました。 そして、カードの初期化方法が全く分かりません。 説明書が何もないので、Javaカードのプログラミング方法を学びたいと思いました。 Re: How to initialize J3H081 SmartCard JCOPは非常に安全な要素製品であり、すべての技術サポート、ドキュメントアクセス、ソフトウェアやツールのリクエストは 、認可されたNXP代理店を通じて処理しなければなりません。 JCOPカードを購入した代理店にお問い合わせください。   よろしくお願いします、 アロンドラ
查看全文
CodeWarrior 版本错误 我偶尔会遇到版本错误: mingw32-make:*** 没有规则可以创建目标 Dropbox//Projects/\Project_x/\Project_Headers/\../\Sources/\Events.c'`Sources/Events_c.obj` 需要此文件。  停止。 文件 Events_c.obj 当然存在,但通常的解决方法却不起作用。我尝试了全新版本,删除了 Events_c.obj 文件。我删除了整个 Flash 文件夹,也尝试过关机重启,但都没用。最后我新建了一个项目,然后剪切粘贴了源文件的内容。这个问题每隔几周就会发生一次,而且有几次,在电脑“休眠”后,问题就自行消失了。 Re: CodeWarrior Build error 谢谢,同步问题确实有道理,但我需要几天时间才能尝试。 Re: CodeWarrior Build error 这听起来不太像是 .obj 文件的问题。文件本身有问题,更像是生成的 Makefile 中存在过时或格式错误的依赖路径。Dropbox//Projects/\Project_x... 路径中奇怪的斜杠是一个重要的线索。我会检查项目是否直接从 Dropbox 同步的文件夹构建,并尝试将其移动到本地的非同步目录。此外,请将出现问题时生成的依赖项/Makefile 条目与正常版本时生成的条目进行比较。如果Dropbox文件夹同步或电脑唤醒后错误消失,则进一步表明问题出在Dropbox/文件系统的时序问题上,而不是源文件本身。 Re: CodeWarrior Build error 你好, 你使用的是哪个版本的CodeWarrior? 您尝试的清理版本是否是通过命令>清理(全部)实现的? 当你转到新项目时,一切正常,但几周后问题又出现了? 可能是你的 make 文件与你的目录不匹配。 请尝试此方法清理并重新生成 make 文件。 在“项目”视图中 > “清理” > 选择要版本项目   luis_maravilla_1-1787091476012.pngluis_maravilla_1-1787091476012.png 另外,建议不要使用 Dropbox 文件夹,请更改为本地路径,并将其添加到版本目录中或进行更改。 请参阅此帖子了解更多信息:没有规则可以创建目标 | Eclipse 上的 MCU 此致敬礼,路易斯
查看全文
How to use the FCCU function of MFS2633? How are PIN.17 FCCU1 and PIN.18 FCCU2 of the MFS2633 used? What truth table do the input values of these two pins form, triggering different protection measures of the chip? Re: MFS2633的FCCU功能如何使用? Hello Rio, FCCU1 (PIN 17) and FCCU2 (PIN 18) on the MFS2633 are digital inputs used to receive fault signals from the connected MCU. They are part of the FS26 Fail-Safe State Machine's MCU monitoring interface. They connect directly to the MCU's FCCU error-output pins (for example, the FCCU_EOUT[0:1] or FSP outputs of S32K3xx MCUs). The FS26 monitors these inputs and, when a fault condition is detected, asserts the configured safety output(s) (FS0B and/or RSTB). The monitoring mode is selected with the FCCU_CFG[2:0] bits in the FS_I_SAFE_INPUTS register during the FS26 initialization phase. The available modes are: Screenshot 2026-08-13 092241.jpg In the most common automotive implementation — the bi-stable (paired) mode — the two pins work as a complementary pair, not as independent inputs that produce different reactions. The FS26 expects: Normal/safe state: FCCU1 = HIGH (1), FCCU2 = LOW (0) Fault state: FCCU1 = LOW (0) or FCCU2 = HIGH (1) Any deviation from the expected normal state triggers the configured fault reaction. The default fault polarity is: FCCU1 = 0 or FCCU2 = 1 is a fault . This polarity is configurable via FCCU12_FLT_POL . Screenshot 2026-08-13 092736.jpg The safety reaction (which outputs are asserted) does not differ based on the specific combination of FCCU1/FCCU2 levels. The reaction is the same for any detected fault, but can be configured independently per pin using FCCU12_FS_REACTION , FCCU1_FS_REACTION  and FCCU2_FS_REACTION bits. Screenshot 2026-08-13 093010.jpg The default reaction is to assert both RSTB and FS0B low when a fault is detected. If you wish to enable a fault recovery strategy (where the MCU handles the fault without being reset), you must change the reaction to FS0B only. BRs, Tomas
查看全文
How to initialize J3H081 SmartCard Hello I have purchased a J3H081 JCOP card. I have also received , , , , , and one APDU line "00F0 0000 10 " I tried the APDU line using GlobalPlatformPro and it returns 6A82 and I completely don't know how to initialize the card. I have no instructions, and I wanted to learn how to program a Java card. Re: How to initialize J3H081 SmartCard JCOP is a highly secure element product, and as such, all technical support, documentation access, and software/tooling requests must be handled through your authorized NXP distributor. Please contact the distributor from whom you purchased the JCOP card.   Best regards,  Alondra
查看全文