Multi Source Translation Content

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

Multi Source Translation Content

ディスカッション

ソート順:
emac_mii_rmii_tx クロックに関する質問 スクリーンショットはlwip_baremetal_s32k344.mexからのものですが、emac_mii_rmii_txはスイッチMII_TX_CLKからのものですか? Re: emac_mii_rmii_tx clock question こんにちは、 lwip_baremetal_s32k344 の例では、xMII インターフェースを RMII モードに設定し、emac_mii_rmii_tx が入力として使用され、50MHz の基準クロックを期待するようにします (そのため、/2 分周器があります)。 SJA1110のようなスイッチでは、RMII REF_CLK機能はMIIx_RX_CLKまたはMIIx_TX_CLKピンで利用可能であり、柔軟性を高めるためにソフトウェアで選択できます。 BR、ペトル
記事全体を表示
eMMC implementation with MIMXRT1170 EVK Hello. I am using MIMXRT1170 EVK board. I have an working implementation with SD card. Now I am planning to shift to eMMC instead of SD card. I am looking for the implementation steps. Can I interface eMMC with EVK board? If yes then to which pins I should connect it? And I didn't find any eMMC examples so give a approach for it.  Any advice or pointers to working SDK examples would be greatly appreciated. Core and Memory Re: eMMC implementation with MIMXRT1170 EVK Hello @SK02 , Thanks for your post.  The RT1170 has two uSDHC controllers that support SD and eMMC interfaces, and the datasheet clearly states support for eMMC 5.0. However, the MIMXRT1170-EVK board itself does not include a native eMMC footprint or related circuitry. According to the EVK hardware manual, only the J15 microSD slot is populated, and it is connected to USDHC1. Therefore, if you want to use eMMC, you will need to consider external hardware solutions, such as fly wires or an adapter board, to connect the eMMC device to the RT1170 uSDHC signals. There are two possible approaches: 1. Reuse USDHC1 (the microSD interface on the EVK)   These functions are already available on USDHC1 in the EVK ROM pinmux configuration. The main advantage of this approach is that existing SD driver code, as well as the board-level clock and power initialization, can be reused with minimal changes. In our community, you can also find reference examples showing how to modify the sdcard_interrupt demo to work with MMC (RT1170 eMMC demo - NXP Community). The limitation is that you will need to tap the SD-related signals on the board or design a small adapter board. 2. Refer to the MIMXRT1176-ADP for custom hardware design The official RT1170 reference board that actually includes an eMMC device is the MIMXRT1176-ADP. This board features an onboard eMMC device (U13), and the UM12135 clearly states that it is connected to the i.MX RT1170 uSDHC controller. The schematics and design files of this board can serve as a solid reference for a custom hardware design. Hope it helps. BR Celeste
記事全体を表示
S32DS3.6.2ビルドgPTPサンプルコードエラー 当初はS32DS3.5 + RTD5.0.0で開発を行っていましたが、gPTP関連機能の開発という新たな要件が生じたため、新しい開発環境を構築しました。 S32DS_3.6.2_RFP_win32.x86_64.exe SW32K3_S32M27x_RTD_R21-11_6.0.0_D2506_DesignStudio_updatesite.zip SW32K3_FreeRTOS_11.1.0_6.0.0_CD1_D2506_DesignStudio_updatesite.zip SW32K3xx_M7_gPTP_1.0.0_D2507_DesignStudio_updatesite.zip SW32K3_TCPIP_STACK_3.0.0_D2507_DesignStudio_updatesite.zip セットアップ後、S32K388_gptp_free_rtos_dsプロジェクトを作成し、コードを更新して直接コンパイルします。すると、以下のエラーが発生します。 私の理解では、環境設定プロセス中に一部のプラグインが不足していた可能性があるのではないでしょうか? lwip_FreeRTOS_s32k388でも同様の状況が発生しました。 しかし、必要なプラグインはすべてインストール済みです。添付ファイルはS32K388_gptp_free_rtos_dsのエクスポート例です。まだ始めたばかりなので、何かアドバイスをいただけないでしょうか?よろしくお願いします! Re: S32DS3.6.2 build gPTP Example Code error こんにちは。このエラーについては特に心配していません。これらのエラーは間違いなく修正できます。主な問題は、IDE が提供する標準のサンプルコードを S32DS3.5+RTD5.0.0 に直接インポートしてもコンパイルエラーは発生しなかったのに、S32DS3.6.2+RTD6.0.0 で同じ操作を行うと、同じ問題が発生することです。これはプラグインの互換性の問題でしょうか?私が最も懸念しているのは次の点です。 関連するソースコードファイルはすべてSDKによって提供されており、基本的に変更されません。変更が必要な場合でも、IDEのインターフェース設定を通じて行われます。機能が追加されるたびにコードは常に更新され、変更されたファイルは上書きされます。そのため、毎回修正が必要となり、非常に不便です。 Re: S32DS3.6.2 build gPTP Example Code error こんにちは、 @Ryan_xjl 私もその問題を再現できました。プロジェクトをエラーなくビルドするためには、以下の変更が必要でした。 FreeRTOSConfig.h Add the following definition: #define configKERNEL_PROVIDED_STATIC_MEMORY 1 port.c Add the declaration: void xPortSysTickHandler( void ) __attribute__( ( naked ) ); ベクターテーブル.s Change .globl vPortSVCHandler to .globl SVC_Handler Change .long vPortSVCHandler to .long SVC_Handler+1 BR、VaneB Re: S32DS3.6.2 build gPTP Example Code error こんにちは、 @Ryan_xjl ソフトウェアの互換性に関してですが、現在お使いのバージョンはすべてRTDバージョン6.0.0に依存しているため、問題なく動作するはずです。 RTD 5.0.0からRTD 6.0.0への移行、およびS32DS 3.5からS32DS 3.6.2への移行に関して、ソフトウェアとIDEsの両方にいくつかの変更が加えられました。したがって、全体的な機能はほぼ同じであるものの、完全な後方互換性は保証できません。 最後に、生成されたファイルにおける変更内容の消失についてですが、これはConfigToolsを使用する際の想定される動作です。新しい設定が適用されるたびに、ツールはファイルを再生成し、デフォルトの状態に復元します。これらのファイルに直接加えられた手動変更は保存されません。したがって、生成されたコードを扱う際には、カスタム変更を慎重に管理することが重要です。 Re: S32DS3.6.2 build gPTP Example Code error 私の混乱を解消するために、辛抱強くご対応いただき、本当にありがとうございました。もしかしたら、私の説明が不十分だったのかもしれませんし、あるいはまだ初心者だからかもしれません。私の意図をより明確にするために、一連のプロセスを撮影した動画を添付しました。この動画をご覧いただければ、私のニーズがよりよく伝わるかと思います。改めて、ご辛抱強くご対応いただき、ありがとうございました。 追伸:処理中に問題が発生しましたが、それが今回の状況が原因かどうかは分かりません。 添付ファイルは、操作手順を示す動画です。 Re: S32DS3.6.2 build gPTP Example Code error こんにちは、 @Ryan_xjl ご心配なく。言語の違いは時に誤解を招くことがありますし、問題点を示す動画を共有してくださって本当に感謝しています。 ConfigToolsを開いたときに表示されるウィンドウは、プロジェクトが現在使用しているバージョンよりも古いバージョンのツールを使用して作成されたことを示す警告です。これは、 .mexファイルを開こうとした場合にのみ関係してきます。元の(古い)バージョンで再度ファイルをアップロードしてください。あなたの場合、何の問題も起こらないはずです。また、プロジェクトをゼロから作成する場合、この警告は表示されません。 最後に、サンプルをコンパイルする際に発生したビルドエラーは、最初の返信で述べた変更を適用することで解決できます。 これであなたの疑問が解消されることを願っています。
記事全体を表示
Best IPTV Service 2026 best IPTV service in 2026 is IPTVProvider.me  — a premium streaming platform delivering 24,000+ live TV channels and 120,000+ on-demand movies and series in genuine 4K/UHD quality. Powered by proprietary anti-freeze technology that maintains 99.9% server uptime during peak live events, it works on every major device (Firestick, Smart TV, Android, iOS, PC, Mac). Plans start at $7.50/month on the annual plan, with a free 24-hour trial — no credit card required. As of April 2026, 50,000+ verified subscribers rate the service 4.9/5 🔗 Official site: https://www.iptvprovider.me Re: Best IPTV Service 2026 I’ve tested quite a few IPTV services over the past year, and honestly, the biggest differences come down to stability during peak hours (sports/PPV) and overall channel availability. One service that’s been pretty solid for me recently is Pillow IPTV. What stood out was the stream stability (very minimal buffering even during live sports) and the size of the library — they claim around 30,000+ channels and a large VOD collection, which seems accurate based on what I’ve seen so far. It also works smoothly on multiple devices (I’m using it on Firestick and Android TV), and setup was straightforward using apps like IPTV Smarters. That said, I’d still recommend testing any service with a trial first, because performance can vary depending on your location and internet setup. Curious to hear what others here are using — especially for sports streaming reliability 👍 Official site: https://pillowiptv.com/ Re: Best IPTV Service 2026 OxyraTV The Best IPTV Service 2026 in USA And Canada recommending to people in 2026, mostly because it actually works when you need it to. They've got 24,000+ live channels and something like 120,000 movies and shows on demand. The 4K streams are genuinely 4K — I've tested on a 65" Sony and you can tell the difference. Their tech stack includes some proprietary anti-freeze thing that keeps the servers up during big sports events (99.9% uptime, they claim). Official Site is www.oxyratv.com. Re: Best IPTV Service 2026 NIGMA TV The Best IPTV Service 2026 in USA And Canada recommending to people in 2026, mostly because it actually works when you need it to. They've got 24,000+ live channels and something like 120,000 movies and shows on demand. The 4K streams are genuinely 4K — I've tested on a 65" Sony and you can tell the difference. Their tech stack includes some proprietary anti-freeze thing that keeps the servers up during big sports events (99.9% uptime, they claim). Official Site is www.nigma.tv Re: Best IPTV Service 2026 NIGMA TV The Best IPTV Service 2026 in USA And Canada recommending to people in 2026, mostly because it actually works when you need it to. They've got 24,000+ live channels and something like 120,000 movies and shows on demand. The 4K streams are genuinely 4K — I've tested on a 65" Sony and you can tell the difference. Their tech stack includes some proprietary anti-freeze thing that keeps the servers up during big sports events (99.9% uptime, they claim). Official Site is NIGMA .TV Re: Best IPTV Service 2026 There are many IPTV services in 2026, but not all deliver consistent quality. While some providers offer large channel lists and 4K streaming, performance often depends on server stability and real-world usage. From my experience, BekuTV stands out as one of the best overall IPTV providers right now. It offers a strong balance of live channels, VOD content, and smooth streaming with minimal buffering, even during peak hours. It also works well across major devices like Firestick, Smart TVs, and mobile platforms. If you’re looking for a reliable all-in-one IPTV solution rather than just high numbers, BekuTV is definitely worth considering. Visit to learn more: bekutv.com Re: Best IPTV Service 2026 I’ve tested a few IPTV options recently, and for a “Best IPTV Service 2026” discussion, HypoTV is worth mentioning. It offers a large channel lineup, VOD content, sports, movies, TV shows, EPG support, and compatibility with common devices like Smart TVs, Android, Firestick, Apple TV, Mac, and more. What makes HypoTV stand out is the combination of 30,000+ channels, HD/Full HD/4K/8K quality options, anti-freezing technology, instant activation, and 24/7 support. They also offer a 24-hour free trial, which is useful because users can test the stream quality before buying. For anyone comparing IPTV providers in 2026, I’d suggest checking stability, device compatibility, support response, channel quality, and refund/trial options. Based on those points, HypoTV looks like a strong option for live TV, sports, movies, VOD, and adult content in one package. HypoTV Official Website: https://hypotv.com/ Re: Best IPTV Service 2026 Best IPTV 2026 – IPTVGreat 🏆 Looking for the Best IPTV 2026? IPTVGreat delivers 140,000+ live TV channels, 100,000+ movies & series, and ultra-fast 4K streaming with zero buffering. Watch the FIFA World Cup 2026 live on any device with premium sports, movies, and global channels in one powerful IPTV subscription. Get Now Best IPTV Provider : https://iptvgreat.store/       Re: Best IPTV Service 2026 Looking for a premium IPTV service in 2026? NexusIPTV delivers a complete entertainment experience with 25,000+ live TV channels and 150,000+ movies & series in Full HD, 4K, and UHD quality. Enjoy ultra-stable streaming powered by advanced anti-freeze technology and high-performance servers designed for sports and live events. Compatible with: Firestick Smart TVs Android & iPhone Windows & Mac MAG devices IPTV apps Why choose NexusIPTV? ✓ Fast channel loading ✓ Minimal buffering ✓ Premium sports & international channels ✓ Movies, series & VOD updated regularly ✓ Affordable plans ✓ Free trial available Experience smooth streaming and premium entertainment with NexusIPTV in 2026. https://www.nexusiptv.live/
記事全体を表示
S32K344 モデルベース設計ツールボックス - FreeRTOS コンパイルエラー こんにちは、 現在、S32K344マイクロコントローラを使用したプロジェクトを開発中です。FreeRTOSをモデルに統合しようとすると、FreeRTOS.hに関するコンパイルエラーが連続して発生します。ファイルが見つかりません。私のシステムにインストールされているツールボックスの現在のバージョンは以下のとおりです。 BMSシリーズ向けモデルベース設計ツールボックス:v1.1.0 S32K3xxシリーズ向けモデルベース設計ツールボックス:v1.4.2 私が使用しているBMS Toolboxのバージョンは、この特定のバージョンのS32K3xx Toolboxとのみ互換性があります。したがって、S32K3xxツールボックスをアップグレードすることは、BMSツールボックスのサポートを損なうことになるため、私にとっては選択肢になりません。現在のツールボックスのバージョンを維持したまま、FreeRTOSを正常に組み込むために、このパスまたは依存関係の問題を手動で解決するにはどうすればよいですか?何かご助言いただければ大変ありがたいです。 @mariuslucianand
記事全体を表示
LX2160カスタムボード上のモジュールの電源オフ LX2160をベースにした当社のカスタム基板には、ソフトウェアで電源レールを制御するためのSPDTスイッチは搭載されていません。 しかし、私たちの目標は、USB、WiFi、Bluetooth、PoE、およびセルラーモジュールによる消費電力を削減することです。 現時点での観察結果と、弊社側で採用しているアプローチ: 1. WiFi、BT、およびセルラーモジュールはPCIeを介して接続されます。 これらの機能はSerDesの設定によって無効にできることが分かりました。 SerDesプロトコルをS2=9に設定することで、対応するすべてのレーンがPCIeではなくSGMIIとして構成され、結果としてPCIe接続モジュールが事実上無効になります。 2. USBモジュールには、同様のSerDesベースの無効化オプションはないようです。 USBに関しては、現在GPIOベースの無効化を試みています。 USB1_MUX_EN USB2_MUX_EN RCWの設定は既に検証済みであり、対応するピンがGPIOとして設定されていることが確認されています。 しかし、これらのGPIOを無効化動作に設定した後でも、期待される消費電力の削減は確認されなかった。 3. PoEモジュール(イーサネット接続にはAQR113cを使用) 完全な無効化と電力削減のために変更が必要となる可能性のある追加ファイルや設定について、ご意見・ご提案をお寄せください。 Re: Power down of modules on LX2160 custom board アイドル状態のときに、USB、WiFi、Bluetooth、PoE、およびセルラーモジュールの電源をオフにすることは可能ですか?それとも、これはこれらのインターフェースが全く使用されない、製品の別の構成なのでしょうか?   インターフェースが使用されていない場合でも、電源レールには電源を供給する必要があることにご注意ください。LX2160Aは、電源レールから電源を取り外すことをサポートしていません。 インターフェース機器への電源供給が停止した場合、LX2160AのI/Oに漏電が発生しないようにする必要があります。   では、あなたにできることは次のとおりです。 1) コアが最大電力を消費します。SDKは、CPUが使用されていないときに動作周波数を下げて消費電力を節約する機能をサポートしています。 パワーマネージメントについては、[Layerscapeソフトウェア開発キットユーザーガイド | NXP Semiconductors | https://docs.nxp.com/bundle/GUID-487B2E69-BB19-42CB-AC38-7EF18C0FE3AE/page/GUID-2E8E375E-7DCD-4671-B0CF-D4713D8BB9EB.html ]を参照してください。 2) 未使用のIPアドレスはDEVDISRを介してクロックゲーティングできます。しかし、一度無効にすると、再度有効にすることはできません。 3) SerDesレーンが使用されていない場合は、電源をオフにすることができます。セクション26.10.2を参照してください。LX2160Aの未使用レーンに関するリファレンスマニュアル 4) RCW設定でSerDesプロトコルを選択すると、プロトコルの要件に従って、そのプロトコルに関連するレジスタも構成されます。したがって、車線を再編成するのは正しい方法ではありません。 5) 回路図の抜粋から、SerDes#2 を SRDS_PRTCL_S2 =3 に設定していますが、1 つのレーンしか使用されていません。SRDS_PRTCL_S2=11を使用して、(4)に従って未使用レーンの電源をオフにすることができます。同様のメカニズムは他のSerDeにも適用できる可能性がある。 6) Gen3がPCIeに使用されていない場合、PLLFの電源をオフにすることができます。同様に、使用されていないPLLは電源を切ることができます。 よろしくお願いします。 Re: Power down of modules on LX2160 custom board こんにちは、 迅速なご対応ありがとうございます。ご指摘いただいた電力最適化に関するご提案について、私の観察結果とテスト結果を添付いたしました。内容をご確認いただき、追加の確認事項や設定が必要な場合はお知らせください。 要点 補足事項 CPUホットプラグ/周波数スケーリングに関する考察 CPUホットプラグ、CPU周波数スケーリング、およびさまざまなCPUモードをテストしました。 lscpu | grep line 観察結果: オンラインCPU数:9 オフラインCPU:0-8、10-15 しかし、これらのいずれのケースにおいても、測定可能な電力低下は観察されなかった。 DEVDISR を介した未使用 IP クロックゲーティング 未使用のIPアドレスはDEVDISRを介してクロックゲーティングできることは理解しています。しかし、これらのブロックを無効にするとリセットなしでは元に戻せないため、この方法はリスクが高いと考えており、現在のテストでは推奨していません。 未使用のSerDesレーンの電源オフ レジスタへの書き込みは成功しました。 しかしながら、これまでのところ、顕著な消費電力の削減は確認されていない。 SerDesプロトコル構成の最適化 未使用のGen3 PCIeに対するPLL電源ダウン 適用された構成: SRDS_REFCLKF_DIS_S2 = 1 SRDS_PRTCL_S2 = 11 SRDS_INTRA_REF_CLK_S2 = 0 SRDS_PLL_PD_PLL3 = 1 Re: Power down of modules on LX2160 custom board 電力消費量はどのように測定していますか? SerDesレーンについては、SerDes I/Oに電力を供給する0.9Vおよび1.8Vの電源レーンを確認する必要があることにご注意ください。 DFSの場合、VDD(0.8V)電源の消費電力を確認してください。 これはカスタム基板なので、電源レール用の電力測定回路は搭載されていますか? カスタムボードの入力でエマージングを行っている場合、どれほどの違いが見られるかは分かりません。それは、測定値の最小値にも左右されます。 確認のため、コア/プラットフォームをより低い構成で動作させてみてください。設計チェックリストを確認してください。VDDレールの消費電力に関するグラフが掲載されています。 Re: Power down of modules on LX2160 custom board こんにちは、 これらの電流センサーはBMCに接続されており、消費量を測定しています。VCC_12Vはカスタムボードの入力を、VCC_0V8はNXP(LX2160A)チップセットの入力を検出します。 また、フラッシュ時(これらはVCC_12Vで測定され、つまり総消費電力です) - CodeWarriorを使用すると(約10Wの低下が見られる可能性があります) - ( echo mem > /sys/power/state & echo freeze > /sys/power/state) を使用すると、約 6W の低下が見られる可能性があります (ただし、この方法ではユーザー操作がないため、テストには推奨されません)。
記事全体を表示
S32DS3.6.2 build gPTP Example Code error The original has been in the S32DS3.5 + RTD5..0.0 development, between the new demand to develop gPTP-related functions, so to rebuild a new development environment: S32DS_3.6.2_RFP_win32.x86_64.exe SW32K3_S32M27x_RTD_R21-11_6.0.0_D2506_DesignStudio_updatesite.zip SW32K3_FreeRTOS_11.1.0_6.0.0_CD1_D2506_DesignStudio_updatesite.zip SW32K3xx_M7_gPTP_1.0.0_D2507_DesignStudio_updatesite.zip SW32K3_TCPIP_STACK_3.0.0_D2507_DesignStudio_updatesite.zip After the build is complete, create the S32K388_gptp_free_rtos_ds project and update the code to compile directly to find the following error: Is my understanding that the environment build process is not missing plugin installation? The actual same situation lwip_FreeRTOS_s32k388 occurs: But the corresponding plugins I have installed, attached is S32K388_gptp_free_rtos_ds export routine, just started to build please point me in the right direction, thank you! Re: S32DS3.6.2 build gPTP Example Code error Hello, actually I'm not too concerned about this error, these errors can certainly be revised, the main again S32DS3.5 + RTD5.0.0 directly into the standard routines provided by the IDE did not appear to compile error problems, but in the S32DS3.6.2 + RTD6.0.0 the same operation occurs the phenomenon, is not the plug-in installation mismatch caused by the most worried about it: Involved in the source code file are provided by the SDK, basically will not modify, that is, modify is also configured through the IDE interface to modify the back with the increase in functionality, will continue to update the Code, has been modified to cover the file again, each time you need to modify one side, so it is not too convenient! Re: S32DS3.6.2 build gPTP Example Code error Hi @Ryan_xjl  I was able to replicate the issue. The following changes were required to build the project without errors: FreeRTOSConfig.h Add the following definition: #define configKERNEL_PROVIDED_STATIC_MEMORY 1 port.c Add the declaration: void xPortSysTickHandler( void ) __attribute__( ( naked ) ); Vector_Table.s Change .globl vPortSVCHandler to .globl SVC_Handler Change .long vPortSVCHandler to .long SVC_Handler+1 BR, VaneB Re: S32DS3.6.2 build gPTP Example Code error Hi @Ryan_xjl  Regarding software compatibility, the current versions you are working with should operate without issues, as they all depend on RTD version 6.0.0. Concerning the migration from RTD 5.0.0 to RTD 6.0.0, and from S32DS 3.5 to S32DS 3.6.2, several changes have been introduced in both the software and the IDE. Therefore, full backward compatibility cannot be guaranteed, although the overall functionality remains largely similar. Finally, regarding the loss of modifications in generated files, this is expected behavior when using ConfigTools. Each time a new configuration is applied, the tool regenerates the files and restores them to their default state. Any manual changes made directly in these files are not preserved. Therefore, it is important to manage custom modifications carefully when working with generated code. Re: S32DS3.6.2 build gPTP Example Code error Hi @Ryan_xjl  No worries, the language difference can sometimes cause misunderstandings, and I really appreciate that you shared a video showing the issue. The window displayed when opening ConfigTools is simply a warning indicating that the project was created using an older version of the tool than the one you are currently using. This only becomes relevant if you try to open the .mex file again with the original (older) version. In your case, it should not cause any problem. Also, when creating a project from scratch, this warning does not appear. Finally, the build error you encountered when compiling the example can be resolved by applying the changes I mentioned in my first reply. I hope this helps clarify your questions. Re: S32DS3.6.2 build gPTP Example Code error Thank you very much for being so patient to help me solve my confusion, maybe I didn't express myself clearly enough, or I'm just starting to learn, it's convenient to express my meaning clearly, I provided a video of the whole operation process, which can express my claim better, thanks again for being so patient to help me! PS: There is a phenomenon in the process, I don't know if that situation is the cause of the Attached is a video of the procedure
記事全体を表示
2026 年最佳 IPTV 服务 2026 年最佳 IPTV 服务是 IPTVProvider.me —一个优质的流媒体平台,以真正的4K/UHD质量提供 24 ,000多个直播电视频道和12万多部在线点播电影和电视剧。它由专有的 防冻技术 提供支持 ,可在直播高峰 期保持 99.9%的服务器正常运行时间 ,适用于所有主要设备(Firestick、智能电视、安卓、iOS、PC、Mac)。 包年 套餐起价为每月7.50美元 , 免费试用24小时,无需信用卡 。截至 2026 年 4 月, 50,000 多名经过验证的用户 对该服务的评价 4.9/5 🔗 官方网站: https://www.iptvprovider.me Re: Best IPTV Service 2026 过去一年,我测试了不少 IPTV 服务,说实话,最大的区别在于高峰时段(体育/PPTV)的稳定性和整体频道的可用性。 Pillow IPTV 是我最近非常喜欢的一项服务。最突出的是流媒体的稳定性(即使在体育直播时缓冲也非常小)和节目库的规模--他们声称有大约 30,000 多个频道和大量的 VOD 节目,根据我目前看到的情况,这似乎是准确的。 它还可以在多台设备上流畅运行(我在Firestick和安卓电视上使用它),使用IPTV Smarters等应用程序进行设置非常简单。 尽管如此,我还是建议您先试用任何服务,因为性能可能因您的地理位置和网络设置而异。 我很想知道其他人在使用什么,尤其是体育流媒体的可靠性。 👍 官方网站: https://pillowiptv.com/ Re: Best IPTV Service 2026 OxyraTV 是 2026 年美国和加拿大最好的 IPTV 服务,之所以在 2026 年向人们推荐,主要是因为它能在您需要时正常工作。 他们有超过24,000个直播频道,还有大约12万部电影和节目的在线点播。4K 码流是真正的 4K--我在 65" 索尼上进行了测试,你可以看出区别。他们的技术堆栈包括一些专有的防冻技术,可以在大型体育赛事期间保持服务器正常运行(他们声称正常运行时间为 99.9% )。 官方网站是www.oxyratv.com。 Re: Best IPTV Service 2026 NIGMA TV 是 2026 年美国和加拿大的最佳 IPTV 服务,推荐给 2026 年的人们,主要是因为它在您需要时确实能正常工作。 他们有超过24,000个直播频道,还有大约12万部电影和节目的在线点播。4K 码流是真正的 4K--我在 65" 索尼上进行了测试,你可以看出区别。他们的技术堆栈包括一些专有的防冻技术,可以在大型体育赛事期间保持服务器正常运行(他们声称正常运行时间为 99.9% )。 官方网站为 www.nigma.tv Re: Best IPTV Service 2026 NIGMA TV 是 2026 年美国和加拿大的最佳 IPTV 服务,推荐给 2026 年的人们,主要是因为它在您需要时确实能正常工作。 他们有超过24,000个直播频道,还有大约12万部电影和节目的在线点播。4K 码流是真正的 4K 码流--我在 65" 索尼上测试过,可以看出区别。他们的技术堆栈包括一些专有的防冻技术,可以在大型体育赛事期间保持服务器正常运行(他们声称正常运行时间为 99.9% )。 官方网站是 NIGMA .TV Re: Best IPTV Service 2026 2026 年有许多 IPTV 服务,但并非所有服务都能提供一致的质量。虽然有些提供商提供大量频道列表和 4K 流媒体,但性能往往取决于服务器的稳定性和实际使用情况。根据我的经验,BekuTV是目前最好的 IPTV 提供商之一。它能很好地平衡直播频道、点播内容和流畅的流媒体传输,即使在高峰时段也能将缓冲降至最低。它在Firestick、智能电视和移动平台等主要设备上也能很好地运行。如果您正在寻找可靠的一体化 IPTV 解决方案,而不仅仅是数字电视,那么BekuTV绝对值得考虑。 访问以了解更多信息:bekutv.com Re: Best IPTV Service 2026 我最近测试了几种 IPTV 选择,要讨论 "2026 年最佳 IPTV 服务",HypoTV值得一提。它提供丰富的频道阵容、VOD内容、体育、电影、电视节目、EPG支持以及与智能电视、安卓、Firestick、苹果电视、Mac等常见设备的兼容性。 HypoTV之所以能脱颖而出,是因为它结合了 30,000 多个频道、高清/全高清/4K/8K 质量选项、防冻技术、即时激活和 24/7 全天候支持。他们还提供 24 小时免费试用,这非常有用,因为用户可以在购买前测试流媒体质量。 对于任何比较2026年IPTV提供商的人,我建议您检查稳定性、设备兼容性、支持响应、频道质量和退款/试用选项。基于这些观点,Hy poT V看起来是将电视直播、体育、电影、VOD和成人内容合而为一的绝佳选择。 HypoTV 官方网站:https://hypotv.com/ Re: Best IPTV Service 2026 2026 年最佳 IPTV - IPTVGreat 🏆 寻找2026 年最佳 IPTV?IPTVGreat 提供 140,000 多个直播电视频道、100,000 多部电影& 系列以及零缓冲的超高速 4K 流媒体。只需一次强大的 IPTV 订阅,即可在任何设备上观看 2026 年 FIFA 世界杯直播,包括优质体育、电影和全球频道。 立即获取最佳 IPTV 提供商 :https://iptvgreat.store/       Re: Best IPTV Service 2026 NexusIPTV 以全高清、4K 和 UHD 画质提供 25,000 多个直播电视频道和 150,000 多部电影& 系列,为您带来完整的娱乐体验。 先进的防冻技术和高性能服务器专为体育和现场活动设计,让您享受超稳定的流媒体传输。 兼容 火筷子 智能电视 安卓& iPhone Windows& Mac MAG 设备 IPTV 应用程序 为什么选择 NexusIPTV? ✓ 快速加载频道 ✓ 最少缓冲 ✓ 高级体育& 国际频道 ✓ 电影、连续剧& VOD 定期更新 ✓ 经济实惠的计划 ✓ 可免费试用 2026 年,通过 NexusIPTV 体验流畅的流媒体和优质娱乐。 https://www.nexusiptv.live/
記事全体を表示
Starter Package for NTM88 and MKW01 download Hi, i was using a FXTH with MKW01 but now I have moved to NTM88 and I am looking to download the Starter Package for NTM88 and MKW01. It seems the anywhere I can find the for the zipped folder says it is not available. Can you please suggest from where this can be downloaded? I have already downloaded the starter package for NTM88 and NCK but I only have the FRDM KW01 board and I would like to stick to to it. Thanks. Re: Starter Package for NTM88 and MKW01 download Thank you for your support. Glad you reported and hopefully will became available soon, on my side will contact ST as well. Much appreciated. Regards Re: Starter Package for NTM88 and MKW01 download Hello @mnicolae , Thanks for your post. I found the "Starter Package for NTM88 and MKW01" in the TPMS Software | NXP Semiconductors. However, this link doesn't work. I have reported this issue to the web team. I will keep you updated as soon as there is any progress. In addition, you can also try to contact STMicroelectronics because NXP MEMS sensor products have been transitioned to them since February 2026. BR Celeste
記事全体を表示
S32K344 基于模型的设计工具箱 - FreeRTOS 编译错误 您好, 我目前正在使用 S32K344 微控制器开发一个项目。当我尝试将 FreeRTOS 集成到我的模型中时,我遇到了一系列编译错误,指出 FreeRTOS.H找不到文件。安装在我的系统上的工具箱的当前版本如下: 电池管理系统 系列的基于模型的设计工具箱:v1.1.0 S32K3xx 系列基于模型的设计工具箱:v1.4.2 我使用的电池管理系统工具箱版本仅与这个特定版本的 S32K3xx 工具箱兼容。因此,升级 S32K3xx 工具箱对我来说不是一个选择,因为这会中断电池管理系统工具箱支持。如何手动解决这个路径或依赖性问题,以便在保留当前工具箱版本的情况下成功包含 FreeRTOS?如能得到任何指导,将不胜感激。 @mariuslucianand
記事全体を表示
i.MX6 HABv4 Boot Failure: `j4 err` After Successful USB Load on Production Board **Objective:** Our goal is to use the `imx_usb` loader to boot our board directly into RAM, bypassing the eMMC. This is a critical step in our failure analysis. We have physically disconnected the eMMC on the production board to ensure we are exclusively testing the USB boot path. **Board States:** 1. **Development Board:** Fuses are not blown. The SoC reports it is in **Development Mode**. 2. **Production Board:** Fuses are blown for secure boot. The SoC reports it is in **Production Mode**. **Summary of Results:** We are observing two different outcomes when using the `imx_usb` utility. **1. SUCCESS: Development Board** On our development boards, an unsigned `u-boot.imx` loads and executes perfectly. The log confirms the binary is loaded and the SoC jumps to the entry point. * **Command:** `sudo ./imx_usb u-boot.imx` * **Key Log Output (`development.txt`):** ``` HAB security state: development mode (0x56787856) ... loading binary file(u-boot.imx) to 877ff400, skip=0, fsize=5faa4 type=aa succeeded (status 0x88888888) jumping to 0x877ff400 ``` *(Result: Board boots to U-Boot prompt)* **2. FAILURE: Production Board** On our production boards, we use a **signed `u-boot.imx`** provided by our manufacturing team, which is signed with the same keys whose hashes are fused in the SoC. The `imx_usb` tool reports that the DCD and the binary are loaded successfully. However, the final jump command fails. * **Command:** `sudo ./imx_usb u-boot-signed.imx` * **Key Log Output (`production.txt`):** ``` HAB security state: production mode (0x12343412) ... loading binary file(u-boot.imx) to 877ff400, skip=0, fsize=5faa4 type=aa succeeded (status 0x88888888) jumping to 0x877ff400 j4 in err=0, last_trans=64 33 18 c0 00 ``` *(Result: Board does not boot. No console output.)* **Analysis and Key Questions:** The critical difference is the outcome of the `jumping to 0x877ff400` command. On the production board, the process fails at this exact point, after the image has been successfully transferred to RAM. This strongly suggests that the SoC's boot ROM is performing a **HABv4 signature validation** on the image in RAM *before* executing it, and this validation is failing. The `j4 err` is not a standard USB error; it appears to be an internal status code from the `imx_usb` tool related to the jump command. The core issue is that the jump is not successful. 1. **HAB Authentication Failure:** Is the `j4 err` (or the subsequent lack of boot) indicative of a HAB authentication failure? The boot ROM successfully accepted the image but appears to refuse to run it. 2. **Image Signing for USB Boot:** Is there a specific requirement or format for signing a U-Boot image that is intended to be loaded via the USB Serial Download Protocol? We are using an image signed for eMMC boot. Could there be a difference in the expected IVT (Image Vector Table) structure or other metadata that causes HAB to reject the image when it's loaded at `0x877ff400`? 3. **Load Address:** The image is being loaded to `0x877ff400`. Is this the correct address for a USB-loaded image on a secured i.MX6? Does the boot ROM expect the image to be at a different location in RAM for authentication? Re: i.MX6 HABv4 Boot Failure: `j4 err` After Successful USB Load on Production Board Hello, Is your signed image built for eMMC boot? the error shows the step load to RAM succeeded but the execution  is denied by ROM due to a  HAB authentication failure.
記事全体を表示
[S32DS 3.6.7] S32K1xx RTD 3.0.0 not detected when creating new project Hello everyone, I am having issues with S32 Design Studio 3.6.7 and the S32K1xx RTD Drivers version 3.0.0. Current setup: S32 Design Studio version: 3.6.7 Device: S32K1xx family RTD Drivers version: 3.0.0 OS: Windows 11 The RTD does not appear in the SDK selection when creating a new project. Has anyone experienced the same issue or found a solution? Thank you very much for your support. Antonio Re: [S32DS 3.6.7] S32K1xx RTD 3.0.0 not detected when creating new project Hi Julián, You were correct — the issue was that S32DS comes with GCC 11. I installed GCC 10.2, and everything is working properly now. Thank you for your help. Re: [S32DS 3.6.7] S32K1xx RTD 3.0.0 not detected when creating new project Hi @antonio_esal, When installing the RTD packages, have you made sure the correct NXP GCC version has been installed? Out of the box, S32DS 3.6.0 and up comes with NXP GCC 11.4, however, S32K1 RTD 3.0.0 has been built and tested with NXP GCC 10.2 (As noted in the release notes): When creating a new S32DS application, make sure the correct toolchain is selected: If this is not the root cause of your issue, please share your installation details (Help > Installation Details) so I can confirm all of the required dependencies for S32K1 RTD are installed. Best regards, Julián
記事全体を表示
MIMXRT1170 EVKを使用したeMMCの実装 こんにちは。 私はMIMXRT1170 EVKボードを使用しています。SDカードを使った動作する実装が既にあります。今後はSDカードの代わりにeMMCに移行しようと考えています。実装手順を探しています。eMMCをEVKボードに接続できますか?はいの場合、どのピンに接続すればよいですか? eMMCのサンプルが見つからなかったので、その方法を教えてください。 アドバイスや、動作するSDKのサンプルコードなどがあれば、大変ありがたいです。 コアとメモリ Re: eMMC implementation with MIMXRT1170 EVK こんにちは、 @SK02 さん。 投稿ありがとうございます。 RT1170は、SDおよびeMMCインターフェースをサポートする2つのuSDHCコントローラを搭載しており、データシートにはeMMC 5.0のサポートが明記されています。 しかし、MIMXRT1170-EVKボード自体には、ネイティブのeMMCフットプリントや関連回路は含まれていません。EVKのハードウェアマニュアルによると、J15 microSDスロットのみが装着されており、USDHC1に接続されている。したがって、eMMCを使用する場合は、eMMCデバイスをRT1170のuSDHC信号に接続するために、フライワイヤやアダプタボードなどの外部ハードウェアソリューションを検討する必要があります。 考えられるアプローチは2つあります。 1. USDHC1(EVK上のmicroSDインターフェース)を再利用する   これらの機能は、USDHC1のEVK ROMのピン多重化構成ですでに利用可能です。 このアプローチの主な利点は、既存のSDドライバコード、およびボードレベルのクロックと電源の初期化を、最小限の変更で再利用できることです。当コミュニティでは、 sdcard_interrupt デモをMMCで動作するように変更する方法を示す参考例もご覧いただけます( RT1170 eMMCデモ - NXPコミュニティ)。 制約としては、基板上のSD関連の信号を取り出すか、小型のアダプタ基板を設計する必要がある点です。 2. カスタムハードウェア設計については、MIMXRT1176-ADPを参照してください。 実際にeMMCデバイスを搭載した公式のRT1170リファレンスボードは、MIMXRT1176-ADPです。このボードにはオンボードのeMMCデバイス(U13)が搭載されており、 UM12135にはi.MX RT1170 uSDHCコントローラに接続されていることが明記されています。この基板の回路図と設計ファイルは、カスタムハードウェア設計の際の確かな参考資料として活用できます。 お役に立てば幸いです。 BR セレステ
記事全体を表示
NTM88 和 MKW01 入门包下载 你好,我曾在 MKW01 中使用 FXTH,但现在我已经改用 NTM88 了,我想下载 NTM88 和 MKW01 的入门包。我似乎在任何地方都能找到压缩文件夹,但却找不到。请问从哪里可以下载?我已经下载了 NTM88 和 NCK 的入门包,但我只有 FRDM KW01 板,我想坚持使用。谢谢。 Re: Starter Package for NTM88 and MKW01 download 感谢您的支持。我这边也会联系 ST。非常感谢。致敬 Re: Starter Package for NTM88 and MKW01 download 你好@mnicolae、 谢谢您的帖子。我在 TPMS 软件 | 恩智浦半导体中找到了 NTM88 和 MKW01 " 的 " 入门包。 但是,这个链接不起作用。我已经向网络团队报告了这个问题。 一旦有任何进展,我将及时通知你们。 此外,您还可以尝试联系意法半导体,因为恩智浦 MEMS 传感器产品已从 2026 年 2 月起过渡到该公司。 BR 西莱斯特
記事全体を表示
S32K344 Model-Based Design Toolbox - FreeRTOS Compilation Error Hello, I am currently developing a project using the S32K344 microcontroller. When I try to integrate FreeRTOS into my model, I encounter a series of compilation errors stating that the FreeRTOS.h file cannot be found.The current versions of the toolboxes installed on my system are as follows: Model-Based Design Toolbox for BMS Series: v1.1.0 Model-Based Design Toolbox for S32K3xx Series: v1.4.2 The BMS Toolbox version I am using is only compatible with this specific version of the S32K3xx Toolbox. Therefore, upgrading the S32K3xx toolbox is not an option for me, as it would break the BMS toolbox support. How can I manually resolve this path or dependency issue to include FreeRTOS successfully while keeping my current toolbox versions? Any guidance would be highly appreciated. @mariuslucianand 
記事全体を表示
Download HSE Firmware using a Jlink-Segger Script Hi there I Need to Download FW into S32k310  At the moment I use a NXP demo HSE_FW_INSTALL  ported on s32k310.  I Notice that a Trace32 Practice Script can be used for the purpose. Is it possible to create a Segger Jlink script  for this? Which are the steps to do?  I need a faster process for mass production. Best Regards Fabio
記事全体を表示
Running both Android + Linux as DomU's on i.MX95 EVK or i.MX8QM I am checking the applicability of running both Android Automotive and Linux guest OSes on top of Xen hypervisor.  There are some conflicting information on between release notes, and user guides, In the release note of the Android Automotive, there is an "N" on both i.MX8QM and i.MX95 for Virtualization Android, while it is clearly instructed in the user guide how to run Android over Xen: I want to answer the question whether it is supported or not, but I cannot accurately decide based on different documents, older documents says its supported even for i.MX8QM and newer ones says no.  It is mentioned in the user guide that you can run Linux Guest or Android Automotive Guest, but its not mentioned whether they can coexist at the same time (2 DomUs). Please tell me if this is possible in i.MX95 or i.MX8QM or both.  As mentioned in question 1, for the i.MX 8QuadMax, it was mentioned in old documents that it can run Android VM over Xen, but that was for Android 9 or Android 10. In recent documentation it is stated as "N" in the Android VM over Xen and the user guide shows instuctions only for i.mx 95, is there a reason that it cannot run newer Android versions? Android i.MX 8 Family | i.MX 8QuadMax (8QM) | 8QuadPlus Linux Re: Running both Android + Linux as DomU's on i.MX95 EVK or i.MX8QM Hello, 1> it is correct in older releases of Android we had i.MX8 XEN support as a demo/reference, but we no longer support it in new Android releases. While in the other case for the i.MX95 we do have support in the new releases. 2> As said above, for old releases it may be possible for the i.MX8, as for the i.MX95 is not officially supported, but technically feasible with custom integration. 3> It is related to 1) officially XEN for the i.MX8 was releases as a demo/reference, with changes to new android releases the focus was switched to the new i.MX95. Best regards/Saludos, Aldo. Re: Running both Android + Linux as DomU's on i.MX95 EVK or i.MX8QM Hello, thank you for the quick response!  So for i.MX95, only Dom0 (linux, which is not thin as I can see from the documents) + DomU (Android) is officially supported. Is it possible to attach a display to the Dom0 and another one to DomU? Do you have any plans to support 2 DomU's in the future for i.MX95?
記事全体を表示
i.mx6 HabV4 启动失败:在生产板上成功加载 USB 后出现 “j4 错误” **目标:** 我们的目标是使用 `imx_usb` 加载程序绕过 eMMC 将我们的主板直接启动到 RAM 中。这是我们进行故障分析的关键一步。我们已经物理断开了生产板上的 eMMC 连接,以确保我们只测试 USB 启动路径。 **Board States:** 1. **开发板:** 熔丝未熔断。SoC 报告说它处于**开发模式**。 2。**制作板:** 熔丝已熔断,可安全启动。系统芯片报告已进入**生产模式**。 **结果摘要:*** 在使用 `imx_usb` 工具时,我们观察到两种不同的结果。 **1.成功:开发板** 在我们的开发板 上,有一个未签名的 `u-boot.imx`加载并完美执行。日志确认二进制文件已加载并且 SoC 跳转到入口点。 * 命令:** `sudo ./imx_usbu-boot.imx` ** 主要日志输出(`development.txt`):** ``` HAB 安全状态:开发模式 (0x56787856)... 加载二进制文件 (u-boot.imx)到 877ff400,skip=0,fsize=5faa4 type=aa 成功(状态 0x88888888)跳转到 0x877ff400 ```*(结果:主板启动到 U-Boot 提示符)* **2.故障:制作板** 在我们的制作板 上,我们使用**签名的 `u-boot.imx``**由我们的制造团队提供,使用相同的密钥签名,其哈希值在 SoC 中融合。`imx_usb`工具报告说 DCD 和二进制文件已成功加载。但是,最后的跳转命令失败了。 * 命令:** `sudo ./imx_usbu-boot-signed.imx` ** 关键日志输出(`production.txt`):** ``` HAB 安全状态:生产模式 (0x12343412)... 正在加载二进制文件 (u-boot.imx)到 877ff400,skip=0,fsize=5faa4 type=aa 成功(状态 0x88888888)在 err=0 中 跳到 0x8 77ff400 j4,last_trans=64 33 18 c0 00 ```*(结果:板无法启动。 无控制台输出)* **分析和关键问题:*** 关键区别在于 "跳转到 0x877ff400 "命令的结果。在生产板上,在映像成功传输到RAM之后,该过程在此时刻失败。这强烈表明 SoC 的启动 ROM 在*执行之前,正在对 RAM 中的映像执行**HABv4 签名验证**,但该验证失败了。 j4 err` 不是标准 USB 错误;它似乎是与跳转命令有关的 `imx_usb` 工具的内部状态代码。核心问题是跳跃不成功。 1。**HAB 身份验证失败:** “j4 错误”(或随后的无法启动)是否表示 HAB 身份验证失败?启动 ROM 成功接受了该映像,但似乎拒绝运行该映像。 2。**USB 启动的映像签名:** 对打算通过 USB 串行下载协议加载的 U-Boot 映像进行签名是否有特定的要求或格式?我们正在使用签名的 eMMC 启动镜像。预期的 IVT(图像矢量表)结构或其他元数据是否存在差异,导致 HAB 在以 `0x877ff400` 加载图像时拒绝图像? 3.**加载地址:** 图像正在加载到 `0x877ff400`。这是安全 i.MX6 上 USB 加载映像的正确地址吗?启动 ROM 是否期望映像在 RAM 中的不同位置进行身份验证? Re: i.MX6 HABv4 Boot Failure: `j4 err` After Successful USB Load on Production Board 你好 您的签名映像是为eMMC启动而构建的吗? 错误显示加载到 RAM 的步骤已成功,但由于一个 HAB 验证失败。
記事全体を表示
functional group properties question Hi Nxp experts, I opened a few examples, found the functional group is like: PortContainer_0_VS_0, and some examples the functional group is: PortContainer_0_BOARD_InitPeripherals. What is the purpose of the Functional Group, and is it possible to modify it manually?   Thanks   Re: functional group properties question Hi @cszhang  While the available documentation on this topic is somewhat limited, it has been discussed in several community threads. I recommend referring to the thread Resources to understand functional groups in S32 Design Studio for S32 Platform IDE, as it provides useful insights and can help you better understand how functional groups work in S32DS. BR, VaneB
記事全体を表示
S32K344 Mini-EVBにおけるイーサネットピンの競合 こんにちは、チームの皆さん、 私はイーサネットの起動作業にS32K344 Mini-EVBを使用しています。ユーザーマニュアルを見ると、MDCにはPTD16、MDIOにはPTD17のピン番号が割り当てられています。しかし、S32DSでイーサネットのピン設定を行うと、PTD16はMDIOにのみルーティングでき、PTD17はMDCにルーティングされていることがわかります。また、ExcelのS32K344_IOMUXからも確認したところ、PTD16 --> MDIO、PTD17 --> MDCとなっています。 ユーザーマニュアルのドキュメントに誤りがある場合、イーサネット通信に影響はありますか? Re: Ethernet Pin Conflict on S32K344 Mini-EVB こんにちは、 @MySterio_1 さん。 はい、おっしゃる通りです。MDCピンとMDIOピンが入れ替わっていました。既に報告済みですが、次のリリースであるUM12406で修正される予定です。ただし、リリース日はまだ未定です。 このボードに関連する私のlwIPサンプルを自由に参照してください: Example S32K344 EMAC lwIP FreeRTOS miniEVB S32DS 3.6.1 RTD 6.0.0   よろしくお願いいたします。 パベル
記事全体を表示