Multi Source Translation Content

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

Multi Source Translation Content

讨论

排序依据:
多采样帧缓冲器到多采样 EGL 表面混合时出现 GL_INVALID_OPERATION 错误 你好, 我正在我的 I.MX8QM 评估板中使用 Opengl ES 对多样本 EGL Surface 进行多样本帧缓冲处理,但我遇到了错误,因为 " GL_INVALID_OPERATION "。以下是我的操作步骤。 FrameBufferObject 创建 附加了多采样呈现缓冲区 作为 glRenderbufferStorageMultisample(GL_RENDERBUFFER,4,GL_RGBA8,width,height);并绘制到 FBO 中。 当使用 在使用glBlitFramebuffer 从 FBO 渲染到默认帧缓冲区时,会出现GL_INVALID_OPERATION错误。 创建的 EGL 窗口表面具有 属性: egl_samples = 4 egl_red_size = 8 egl_green_size = 8 egl_blue_size = 8 egl_alpha_size = 8 当创建 EGL 表面时使用 EGL_SAMPLES = 0 时,glBlitFramebuffer 会正确绘制默认帧缓冲区。 注意: 在glBlitFramebuffer 中,源矩形和目标矩形的大小完全相同。
查看全文
PN7462 自定义板上的 HostIF UART RX 中断问题 — 启动时出现错误 HSU_RX_FER 中断且没有 RX 我正在 UART(HSU)模式下使用 PN7462 HostIF。相同的固件和引脚配置在 PN7462 评估板上可以正常工作,但在自定义主板上,TX 可以正常工作,而 RX 回调未触发。我还观察到 HSU_RX_FER_STATUS 在启动后立即中断,即使没有传输任何主机数据。 以下是我当前的 HostIF UART 初始化配置: 接口:E_HIF_HSU 波特率:E_HSU_BAUDrate_9_6K 停止位1 虚拟字节:0 EOF: 0 超时:0 缓冲区类型:e_buffer_format_free 短帧长度:0 存储错误数据:0 页眉大小:0 初始化流程: phhalHif_Init(&gHifConfig, Hif_UartErrorCallback) phhalHif_InitRxBuffer(E_RX_BUFFER_ID0, ..., Hif_UartRxCallback) 有人能验证这种配置是否足以满足 UART RX 操作的要求吗? 具体来说 除了 phhalHif_Init() 和 phhalHif_InitRxBuffer(),还需要其他中断配置吗? 初始化前是否需要明确启用或清除 HostIF 中断? RX 回调是否需要额外的 NVIC/IRQ 配置? E_BUFFER_FORMAT_FREE 是否适合 UART 通信,还是应该使用其他缓冲器格式? 缺少中断配置能否解释为什么 TX 正常运行时未触发 RX 回调? 启动时重复出现 HSU_RX_FER_STATUS 是否表明初始化或硬件配置不正确? 如能提供有关 HostIF UART 初始化或中断设置的建议,我们将不胜感激。 谢谢。 NFC读卡器库
查看全文
关于 S32K328 MCU 的功耗估算工具 在我的应用程序中,我使用 S32K328 作为功能性微控制器,使用 S32K341 作为功能安全 MCU。我想知道是否有适用于这些集成电路的功率估算工具。 如果是,请告诉我在哪里可以找到适合我的使用案例。 谢谢。 Re: Regarding power estimation tool for S32K328 MCU 你好,@Abhinavv_007、 目前,您可以参考S32K 功率估计工具 (PET)。 它包含的设备数量有限,但可能很有用。我还在社区给你发了一条私信,内容涉及 S32K3X8 设备的一些初步信息。 最后,请参阅 S32K3XX 数据表中的第6.7 章(电源电流) ,其中说明了待机、低速运行和运行时的电源电流。这可能被证明是有用的参考信息。 致以最诚挚的问候, Julián
查看全文
PN7462カスタムボードにおけるHostIF UART RX割り込みの問題 – 起動時にHSU_RX_FER割り込みが偽で、RXが受信されない 私はPN7462 HostIFをUART(HSU)モードで使用しています。同じファームウェアとピン構成はPN7462評価ボードでは正しく動作しますが、カスタムボードではTXは動作するもののRXコールバックがトリガーされません。ホストデータが送信されていない場合でも、起動直後にHSU_RX_FER_STATUS割り込みが発生することも確認しました。 以下は、現在のHostIF UART初期化設定です。 インターフェース: E_HIF_HSU ボーレート: E_HSU_BAUDRATE_9_6K ストップビット: 1 ダミーバイト数: 0 EOF: 0 タイムアウト: 0 バッファタイプ: E_BUFFER_FORMAT_FREE 短いフレームの長さ: 0 エラーデータを保存する: 0 ヘッダーサイズ: 0 初期化フロー: phhalHif_Init(&gHifConfig, Hif_UartErrorCallback) phhalHif_InitRxBuffer(E_RX_BUFFER_ID0, ..., Hif_UartRxCallback) この設定でUART受信動作が十分かどうか、どなたか確認していただけませんか? 具体的には: phhalHif_Init() と phhalHif_InitRxBuffer() 以外に、追加の割り込み設定が必要ですか? HostIF割り込みは、初期化前に明示的に有効化または無効化する必要がありますか? RXコールバックには、追加のNVIC/IRQ設定が必要ですか? E_BUFFER_FORMAT_FREEはUART通信に適していますか、それとも別のバッファフォーマットを使用すべきでしょうか? 割り込み設定の欠落が、TXは正常に動作するのにRXコールバックがトリガーされない理由を説明できるでしょうか? 起動時にHSU_RX_FER_STATUSが繰り返し発生するのは、初期化またはハードウェア構成が正しくないことを示しているのでしょうか? HostIF UARTの初期化または割り込み設定に関する推奨事項についてご教示いただければ幸いです。 ありがとうございます。 NFCリーダー・ライブラリ
查看全文
マルチサンプルフレームバッファからマルチサンプルEGLサーフェスへのブリッティングを実行する際に、GL_INVALID_OPERATIONエラーが発生します。 こんにちは、 私はI.MX8QM評価ボードでOpenGL ESを使用してマルチサンプルフレームバッファからマルチサンプルEGLサーフェスへのブリッティングを行っていますが、「 GL_INVALID_OPERATION 」というエラーが発生します。以下は私が実行した手順です。 マルチサンプルレンダーバッファがアタッチされたFrameBufferObjectが作成されました glRenderbufferStorageMultisample (GL_RENDERBUFFER, 4, GL_RGBA8, width, height); を呼び出し、FBO に描画します。 glBlitFramebufferを使用してFBOからDefault Framebufferにレンダリングする場合、 EGLウィンドウサーフェスが属性付きで作成されるとGL_INVALID_OPERATIONエラーが発生します。 EGL_SAMPLES = 4 EGL_RED_SIZE = 8 EGL_GREEN_SIZE = 8 EGL_BLUE_SIZE = 8 EGL_ALPHA_SIZE = 8 EGL_SAMPLES = 0で EGL サーフェスが作成されると、 glBlitFramebuffer はデフォルトのフレームバッファに正しく描画します。 注: glBlitFramebufferでは、ソース矩形とデスティネーション矩形のサイズは完全に同じです。
查看全文
mimxrt595s の h264 または類似のフォーマット こんにちは、 現在、lvgl、zephyr、GUI-Guiderを使用してウェアラブルデバイス用のGUIを開発しています。 私たちのプロジェクトでは、既存のウィジェットでは一から再現するのが難しい、より複雑なアニメーションを実装したいと考えています。そのため、必要に応じてUIに簡単に挿入できる小さな動画を実装したいと考えています。 動画を一連の画像に変換することで概念実証(POC)を作成することは既にできましたが、その方法では圧縮率が非常に低いため、大量のフラッシュメモリ容量が必要になります。 アイデアは、h264などのより優れたフォーマットを使用することだった。しかし、そのサポートは、初期状態ではi.MX RT1050に限定されているようです。 mimxrt595sでもこれを動作させる方法はありますか?それとも、そもそも意味がないのでしょうか?私の調査の結果、ffmpegライブラリをlvglの実装にリンクさせなければ不可能であるという結論に至りました。しかし、そのためには相当な移植作業が必要となり、チップのフラッシュメモリとRAMを大量に消費してしまうため、現実的ではありません。 この最後の仮定は正しいでしょうか?それとも、私たちの状況において資源を節約する方法はあるのでしょうか? よろしくお願いいたします。 カイ
查看全文
RDA8420TEIS0の図 こんにちは、オーストラリア在住のホンです。EISを使用したBMSを設計する予定で、BMA7418、6402、8420などを使用する予定ですが、AC励起信号の生成方法がわかりません。この基板RDA8420TEIS0がどのように交流励起信号を生成するのか教えていただけますか?回路図を投稿してもらえますか?Q1、Q2、D2、D3、インダクタ、コンデンサといった部品はどのように機能するのですか?どうしても分からないのですが、助けていただけますか?乾杯 Hブリッジドライバ Re: Sch of RDA8420TEIS0 こんにちは 参考のために、下記のリンクからこのボードをダウンロードしてみてください。 https://www.nxp.com/design/design-center/development-boards-and-designs/EVBMA8420T
查看全文
S32DS & RTD libraries CI/CD Hello, Has anyone managed to fully integrate a S32DS & RTD & freeRTOS  .mex project into a CI/CD pipeline (GitHub, Gitlab, Jenkins, etc.). I read this post and I would say there are still a lot of unclear steps: Best practices for CI/CD  I also see that S32DS docker images are also available, could they be used? Is there any official step by step instructions from NXP to implement this ? Thanks.
查看全文
On the S32K344 power consumption evaluation issue Can you tell me if this is an estimate of the power consumption of the two cores on by default? And after each peripheral is selected, there is an additional current required internally, what is the meaning of this, do I still need to evaluate this? The peripherals that are currently selected are the ones that need to be used at present, but the internal extra current required is not set, at this time this 162.13mA/535.03mW, the power consumption of this evaluation, is it a good reference? 回复: 关于S32K344功耗评估问题 Hi @north Avenue Older Driver Potential King Still in the datasheet, the table lists the peripheral on status of the test 回复: 关于S32K344功耗评估问题 Thanks for the reply:Hello, it's like this about 2. In that table you can find the power consumption with clock 160MHz,dual core and single core, with some peripherals not turned off. This is to say that some of the peripherals are not turned off, can you determine which peripherals are not turned off, or is the current in the case that all peripherals are turned on, I mean the S32K344 in RUN mode, open EMAC, LPI2C, QuadSPI, TempSense, eDMA, eMIOS, these peripherals, as well as the current of this current is how meaningful for reference? By the power consumption on the PET, it feels a bit on the low side, doesn't it? Re: 关于S32K344功耗评估问题 Hi @north Avenue Older Driver Potential King The power consumption evaluation tool is not maintained and some of the power consumption data differs from the latest datasheet. It is recommended that you refer to the latest datasheet. I am using: rev. 13 - 12 November 2025, most recently Rev. 14. 1. In this table you can find the power consumption with a clock of 160 MHz, dual-core and single-core, with peripherals turned off. 2. In the table you can find the power consumption with a clock of 160 MHz, dual-core and single-core, with some peripherals not turned off.
查看全文
GL_INVALID_OPERATION error, when doing multisample framebuffer to multisample EGL Surface blitting Hi, I am doing multisample framebuffer to multisample EGL Surface blitting using Opengl ES in my I.MX8QM Eval board and I am getting error as "GL_INVALID_OPERATION". Below are the steps I did. FrameBufferObject created with multisampled renderbuffer attached as  glRenderbufferStorageMultisample(GL_RENDERBUFFER, 4, GL_RGBA8, width,height); and drawing in to FBO. When using glBlitFramebuffer to render from FBO in to Default Framebuffer ,it gives GL_INVALID_OPERATION error when EGL window surface is created with attributes: EGL_SAMPLES = 4 EGL_RED_SIZE = 8 EGL_GREEN_SIZE = 8 EGL_BLUE_SIZE = 8 EGL_ALPHA_SIZE = 8 When EGL Surface  is created with EGL_SAMPLES = 0 glBlitFramebuffer draws in to default framebuffer correctly. Note: Source and Destination rectangles are  exactly same size in the glBlitFramebuffer.
查看全文
PN7462 HostIF UART RX interrupt issue on custom board – false HSU_RX_FER interrupt at boot and no RX I am using PN7462 HostIF in UART (HSU) mode. The same firmware and pin configuration work correctly on the PN7462 evaluation board, but on a custom board TX works while RX callbacks are not triggered. I also observe HSU_RX_FER_STATUS interrupts immediately after boot, even when no host data is transmitted. Below is my current HostIF UART initialization configuration: Interface: E_HIF_HSU Baud rate: E_HSU_BAUDRATE_9_6K Stop bits: 1 Dummy bytes: 0 EOF: 0 Timeout: 0 Buffer type: E_BUFFER_FORMAT_FREE Short frame length: 0 Store error data: 0 Header size: 0 Initialization flow: phhalHif_Init(&gHifConfig, Hif_UartErrorCallback) phhalHif_InitRxBuffer(E_RX_BUFFER_ID0, ..., Hif_UartRxCallback) Could someone verify whether this configuration is sufficient for UART RX operation? Specifically: Is any additional interrupt configuration required apart from phhalHif_Init() and phhalHif_InitRxBuffer()? Do HostIF interrupts need to be explicitly enabled or cleared before initialization? Is additional NVIC/IRQ configuration required for RX callbacks? Is E_BUFFER_FORMAT_FREE appropriate for UART communication, or should another buffer format be used? Could missing interrupt configuration explain why RX callbacks are not triggered while TX works correctly? Is repeated HSU_RX_FER_STATUS at startup an indication of incorrect initialization or hardware configuration? Any guidance on recommended HostIF UART initialization or interrupt setup would be appreciated. Thanks. NFC Reader Library
查看全文
how to handle float value in imx6sx Hello experts, I am porting an existing program to a custom board using the imx6sx. Previously, it used a P1011 CPU. The environment is Yocto BSP 5.15.52-2.1.0. The problem is that a signal error occurs when storing a float value received via communication into a structure. I asked gemini and found that this can happen if the alignment is incorrect, but since I am using an external library, ( which i receive a binary library) I would like to know how to resolve this without modifying the source code. i asked AI and got some tips but not sucessed Thank you sincerely i.MX6SoloX i.MX7Dual
查看全文
PCF85063TP/1Z RTC 中的时间漂移 我们在温度记录仪产品中使用 PCF85063TP/1Z RTC,用于在温度数据记录期间保持时间戳。在测试期间,我们观察到多个电路板上的时间偏移问题,其中每个电路板随时间推移显示出不同的偏移量。 在当前的硬件设计中,我们使用的是 12.5 pF 负载电容晶体。在此基础上,我们更新了 RTC 寄存器的设置,将 CAP_SEL 位配置为 "1",以满足晶体负载电容要求。 更改配置后,我们在实时运行中仍能观察到大约 2 秒钟的漂移。 我们想了解 PCF85063TP/1Z 是否会出现这种程度的漂移。 是否有建议的寄存器配置或校准方法来提高 RTC 的精度。 PCB 布局、晶体选择或其他硬件考虑因素是否会导致观察到的板之间的差异。 请就如何在此应用中提高 RTC 计时精度提出建议和指导。 Re: Time Drift in PCF85063TP/1Z RTC 你好 请参阅应用笔记 AN11247 使用外部温度传感器使用 PCF85063、PCF8523 和 PCF2123 提高计时精度 希望对您有所帮助!
查看全文
Is Jellytide Legit Trying? A 2026 Review Jellytide is becoming one of the most talked-about preparedness systems in 2026 because it focuses on realistic blackout survival strategies instead of Hollywood-style fear tactics. Created by combat veteran Daniels, the program combines practical guides, step-by-step videos, and military-inspired planning to help families prepare for long-term power outages, cyber threats, and emergency situations. Jellytide Ready to go What makes it stand out is its beginner-friendly approach. Rather than pushing expensive bunkers or complex survival gear, the system focuses on affordable, practical actions like water storage, backup power, food security, EMP protection, and home preparedness. Many users appreciate that the guide breaks everything into simple weekend projects that ordinary households can actually implement. In 2026, with growing concerns around grid instability, severe weather, and supply chain disruptions, preparedness has shifted from a niche hobby to a mainstream conversation. Jellytide taps directly into this trend by offering a structured survival roadmap for families who want peace of mind without becoming extreme “doomsday preppers.”  Is it worth buying? For people looking for a practical preparedness blueprint, the answer appears to be yes. The value comes from the organization, simplicity, and real-world focus of the system. However, the guide only works if users actually apply the strategies. It is best suited for those willing to take gradual action to improve their household resilience and emergency readiness. See More https://tinyurl.com/2epyz5wu
查看全文
Ethernet Pin Conflict on S32K344 Mini-EVB Hello Team, i am using S32K344 Mini-EVB for ethernet bring up activity. From its user manual i can see that pin no PTD16 for MDC and PTD17 for MDIO. But when i am doing ethernet pin configuration in S32DS i can see PTD16 can be only routed to MDIO and PTD17 is routed to MDC and also i verified it from S32K344_IOMUX from that excel also i can see that PTD16 --> MDIO and PTD17 --> MDC. So is there any mistake in user manual documentation if yes will it affect the ethernet communication. Re: Ethernet Pin Conflict on S32K344 Mini-EVB Hello @MySterio_1 , Yes, you are right. Pins MDC and MDIO were swapped. I've already reported that - it will be fixed in the next release of UM12406 - the release date is not known yet. Feel free to refer to my lwIP example related to this board: Example S32K344 EMAC lwIP FreeRTOS miniEVB S32DS 3.6.1 RTD 6.0.0    Best regards, Pavel
查看全文
S32K328 MCUの電力推定ツールについて 私のアプリケーションでは、機能用MCUとしてS32K328を、安全用MCUとしてS32K341を使用しています。これらのICに対応した電力推定ツールがあるかどうか知りたいです。 もしそうであれば、私の用途に合ったものをどこで入手できるか教えてください。 ありがとう。 Re: Regarding power estimation tool for S32K328 MCU こんにちは、 @Abhinavv_007 さん。 現時点では、 S32K電力推定ツール(PET)を参照してください。 対応機器の数は限られているが、役に立つ可能性はある。S32K3X8デバイスに関する予備情報について、コミュニティのプライベートメッセージでもお送りしました。 最後に、S32K3XXのデータシートの第6.7章(供給電流)をご参照ください。そこには、スタンバイ時、低速動作時、および動作時の供給電流が記載されています。これは参考情報として役立つかもしれません。 よろしくお願いします、 ジュリアン
查看全文
LS1012Aの自動起動が開始されない こんにちは、私はls1012aボードを問題なく使用していました。 起動時に、先ほどの画像のような状態になりません。 何が問題なのか知りたい。
查看全文
集成 CAN 上的 UDS 引导加载器和 J1939 堆栈   说明: 嗨,团队、 我在 S32K344 上使用 S32DS 3.6.5 和 RTD 3.0.0。 目前正在实施: FlexCAN CAN 通信 通过 ISO-TP 的 UDS 引导加载程序 J1939 应用通信 GCC 编译器 AUTOSAR RTD 驱动器 我需要有关以下方面共存的指导: UDS 诊断(ISO14229) ISO-TP 传输层 J1939 通信栈 如何在 S32k344 中通过软件选择 CAN 终端电阻配置? 解释如何在收发器和 MCU 中设计 CAN 终端 问题 在同一个 CAN 控制器上同时运行 UDS 和 J1939 的推荐架构是什么? 是否建议为 UDS 和 J1939 使用不同的 CAN 报文缓冲器? 如何配置 CAN ID 过滤? 恩智浦是否有以下参考示例: UDS 引导加载程序 J1939 堆栈 共享使用 FlexCAN RTD 3.0 在这种使用情况下有什么已知限制吗? 控制器: S32K344 RTD 3.0 S32DS 3.5 谢谢。
查看全文
UDSブートローダーとCAN上のJ1939スタックの統合   説明: チームの皆さん、こんにちは。 私はS32DS 3.6.5とRTD 3.0.0を使用してS32K344で作業しています。 現在の実装: FlexCAN CAN通信 ISO-TP経由のUDSブートローダー J1939アプリケーション通信 GCCコンパイラ AUTOSAR RTDドライバ 以下のものの共存に関して指導が必要です。 UDS診断(ISO14229) ISO-TPトランスポート層 J1939通信スタック S32k344ではCAN終端抵抗の設定をソフトウェアで選択する必要がありますが、その方法を教えてください。 トランシーバとMCUにおけるCAN終端の設計方法について説明します。 質問: 同じCANコントローラ上でUDSとJ1939を同時に実行するための推奨アーキテクチャは何ですか? UDSとJ1939用に別々のCANメッセージバッファを使用することは推奨されますか? CAN IDフィルタリングはどのように設定すべきですか? NXPの参考例はありますか? UDSブートローダー J1939スタック FlexCANの共有利用 このユースケースに関して、RTD 3.0に既知の制限事項はありますか? コントローラ: S32K344 RTD 3.0 S32DS 3.5 ありがとう。
查看全文
SPI NAND boot on i.MX8ULP Hello, I'm trying to boot from a SPI NAND on i.MX8ULP. The evk has a SPI NOR attached and I was able to boot from it, but when trying with a NAND on our boards I cannot get this to work. I've configured BT*_CFG* pins and I see the boot ROM tries to read the NAND, but neither the M33 nor the A35 cores seem to boot, so I'm thinking the boot image is not correct. I'm building the image with imx-mkimage flash_singleboot_m33_flexspi target, which uses the fspi_header file as header block, but the comments in this file seem to indicate that this is for Serial NOR and not for NAND, so I'm looking into this flexspi configuration block header. How would one go about making an appropriate header file for our target? I found kobs-ng but it doesn't seem to be intended for 8ulp (no GPMI NAND controller, and doesn't work even after patching lightly to run anyway) I couldn't find any documentation about the FCFB block in the 8ulp documentation either. I found some documentation about it in the i.MX 8M Mini Applications Processor reference manual (and the u-boot patch adding options about it in u-boot mkimage), but even if it is indeed the same format then how to use it for i.MX8ULP (in particular what LUT table to use) would be appreciated. Thank you, Dominique Martinet
查看全文