Multi Source Translation Content

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Multi Source Translation Content

Discussions

Sort by:
S32k3の外部GPIO割り込みの例 こんにちは、 S32K3X4EVB-Q172のプッシュボタンSW5を使用して、単純な外部GPIO割り込みを実行しようとしています。 私はhttps://community.nxp.com/t5/S32-Design-Studio-Knowledge-Base/SIUL2-external-interrupt-example-project-using-S32K3-RTD-without/ta-p/1552335に従っています。 これはメインファイルです しかし、「 SIUL2_ICU_IP_INSTANCE」が宣言されていないというエラーが発生し、他のエラーも発生します SIUL2 INSTANCEは0に設定されていますが、該当するファイルでは更新されていません 設定で何かが足りないのでしょうか? S32K3X4EVB-Q172ボードでプッシュボタンとLEDトグルを使用したGPIO割り込みについて、これまたは利用可能な例を誰か助けてくれませんか? プロジェクト フォルダーは下記に添付されています。RTD 5.0.0 を使用しています。 Re: External GPIO interrupt example in S32k3 こんにちは@AntoZ この HOWTO は RTD バージョン 2.0.0 を使用して実装され、その後のリリースでいくつかの変更が導入されました。その結果、新しいバージョンの手順に従うと、いくつかの矛盾が生じる可能性があります。 予期される構成パラメータの不一致により、Siul2_Icu_Ip_Init() 関数のエラー メッセージが表示されます。関数に渡されたパラメータは予期された名前では存在しません。別の識別子で生成されました。 たとえば、 Siul2_Icu_Ip_0_Config_PB_BOARD_InitPeripheralsを使用する代わりに。以下を使用する必要があります: Siul2_Icu_Ip_0_Config_PB 。この正しい設定はSiul2_Icu_Ip_SA_PBcfg.hにあります。ファイル。 より良い参考のために、Siul2_Icu_Ip_BlinkLed_S32K344 の例を確認することをお勧めします。これは、HOWTO で説明されているものと同じアプリケーションを実装します。この例はRTDパッケージに含まれており、例から新しいプロジェクトを作成するときに簡単にアクセスできます。 BR、ヴェインB
View full article
FRDM-MCXA156: FlexPWM not working as intended Hello, I'm trying to use the FlexPWM peripheral of the MCXA156 SoC in a FRDM_MCXA156 devboard using Zephyr but I can't get it to fully work. Whatever I try, the pulse and period seen in the associated output pins do not correspond with the values I am assigning it. I have found a way to reproduce the issue using the blinky_pwm example. Using the reproduction steps below I only get a small pulse of less than 1ms in pin P3_6 (where channel 0 of flexpwm0_pwm0 is linked) whenever the PWM is reconfigured, but nothing in between. AFAIK the example should be setting a 50% duty cycle signal and that is not what I am seeing. It is not a regression; I've tried the same thing on a semi-recent commit 0d46a93 and commit 9f6fdae (Where PWM was implemented for the FRDM_MCXA156 board) and the issue still happens. Steps to reproduce: west init repro cd repro && west update Copy the following overlay file to samples/basic/blinky_pwm/boards/frdm_mcxa156.overlay: #include / { pwmleds { compatible = "pwm-leds"; pwm_led_0: pwm_led_0 { pwms = <&flexpwm0_pwm0 0 PWM_MSEC(1) PWM_POLARITY_NORMAL>; label = "PWM LED 0"; }; }; aliases { pwm-led0 = &pwm_led_0; pwm-0 = &flexpwm0_pwm0; }; }; Then: cd zephyr && west build -b frdm_mcxa156 samples/basic/blinky_pwm west flash See incorrect behavior when probing P3_6. Logs don't show much: [00:00:00.000,069] <dbg> pwm_mcux: pwm_mcux_init: Set prescaler 128, reload mode 2 *** Booting Zephyr OS build v4.2.0-2444-g0d46a934171a *** PWM-based blinky Calibrating for channel 0... [00:00:00.017,179] <err> pwm_mcux: Too long period (750000), adjust pwm prescaler! [00:00:00.025,412] <err> pwm_mcux: Too long period (375000), adjust pwm prescaler! [00:00:00.033,645] <err> pwm_mcux: Too long period (187500), adjust pwm prescaler! [00:00:00.041,879] <err> pwm_mcux: Too long period (93750), adjust pwm prescaler! Done calibrating; maximum/minimum periods 62500000/7812500 nsec Using period 62500000 Using period 31250000 Using period 15625000 Using period 7812500 Using period 15625000 Using period 31250000 ... Attached is the (compressed) ELF final binary I got doing these steps. I hope this is just a mistake on my side. Appreciate any feedback on this matter! Thanks in advance Re: FRDM-MCXA156: FlexPWM not working as intended Hi @aperea-cc, Thanks for the suggestions of documenting this somewhere on the Zephyr driver. I will pass it on to the Zephyr team for their consideration. Re: FRDM-MCXA156: FlexPWM not working as intended Hello, Thank you very much for your response and support. Yesterday I did the same thing (Comparing with the example from the official NXP SDK) and ended up noticing that the FlexPWM peripheral only works if the CPU is active. That would explain why in Zephyr doesn't work, since it sleeps for 4 seconds after every PWM configuration. I don't think there's any elegant solution for this problem in Zephyr, since we'd need the CPU busy if we want the PWM to work, so I'm figuring out if the same behaviour I want can be reproduced using FlexIO instead. From reading the reference manual it seems that FlexPWM is the only non-CPU-related peripheral that exhibits this behavior. It's in the same power management category as the watchdog, cache controller or CPU itself. Maybe this could be documented in the Zephyr driver somewhere; I think it'd save a lot of time to newcomers to the SoC. Re: FRDM-MCXA156: FlexPWM not working as intended Hi @aperea-cc, I imported the blinky_pwm example code from the Zephyr repository and added the overlay that you shared. Indeed, the P3_6 pin outputs small pulses instead of actual PWM signals. After this test, I imported the normal pwm example (without Zephyr) and it worked properly with P3_6. This proves that the issue is not hardware, but rather software related. I will continue investigating whether the issue is on application level or on driver level on the Zephyr example. If you have any further developments, let me know. BR, Edwin.
View full article
External GPIO interrupt example in S32k3 Hi there, I'm trying to execute simple external GPIO interrupt in S32K3X4EVB-Q172 using push button SW5 I'm followed the https://community.nxp.com/t5/S32-Design-Studio-Knowledge-Base/SIUL2-external-interrupt-example-project-using-S32K3-RTD-without/ta-p/1552335 This is main file But i'm getting an error as "SIUL2_ICU_IP_INSTANCE" not declared and other errors too SIUL2 INSTANCE is configured as 0 but its not updated in respected file Am I missing something in configuration, Can anyone help this or any example available for GPIO interrupt with push button and led toggle with S32K3X4EVB-Q172 board The project folder is attached bellow , I'm using RTD 5.0.0. Re: External GPIO interrupt example in S32k3 Hi @AntoZ  This HOWTO was implemented using RTD version 2.0.0, and several changes have been introduced in subsequent releases. As a result, some discrepancies may appear when following the instructions with newer versions. The Siul2_Icu_Ip_Init() function error message is displayed due to a mismatch in the expected configuration parameter. The parameter passed to the function does not exist under the expected name—it was generated with a different identifier. For example, instead of using: Siul2_Icu_Ip_0_Config_PB_BOARD_InitPeripherals. You should use: Siul2_Icu_Ip_0_Config_PB. This correct configuration can be found in the Siul2_Icu_Ip_SA_PBcfg.h file. For better reference, I recommend reviewing the Siul2_Icu_Ip_BlinkLed_S32K344 example. It implements the same application as described in the HOWTO. This example is included with the RTD package and can be easily accessed when creating a new project from an example BR, VaneB
View full article
External GPIO interrupt example in S32k3 Hi there, I'm trying to execute simple external GPIO interrupt in S32K3X4EVB-Q172 using push button SW5 I'm followed the https://community.nxp.com/t5/S32-Design-Studio-Knowledge-Base/SIUL2-external-interrupt-example-project-using-S32K3-RTD-without/ta-p/1552335 This is main file But i'm getting an error as "SIUL2_ICU_IP_INSTANCE" not declared and other errors too SIUL2 INSTANCE is configured as 0 but its not updated in respected file Am I missing something in configuration, Can anyone help this or any example available for GPIO interrupt with push button and led toggle with S32K3X4EVB-Q172 board The project folder is attached bellow , I'm using RTD 5.0.0. Re: External GPIO interrupt example in S32k3 Hi @AntoZ  This HOWTO was implemented using RTD version 2.0.0, and several changes have been introduced in subsequent releases. As a result, some discrepancies may appear when following the instructions with newer versions. The Siul2_Icu_Ip_Init() function error message is displayed due to a mismatch in the expected configuration parameter. The parameter passed to the function does not exist under the expected name—it was generated with a different identifier. For example, instead of using: Siul2_Icu_Ip_0_Config_PB_BOARD_InitPeripherals. You should use: Siul2_Icu_Ip_0_Config_PB. This correct configuration can be found in the Siul2_Icu_Ip_SA_PBcfg.h file. For better reference, I recommend reviewing the Siul2_Icu_Ip_BlinkLed_S32K344 example. It implements the same application as described in the HOWTO. This example is included with the RTD package and can be easily accessed when creating a new project from an example BR, VaneB
View full article
链接服务器错误:没有可用端口 我们有一个 MIMXRT798S 板,我们正在尝试使用 McuLink。我们从 NXP 网站下载了 Linux 版 Linkserver 25.7.33。当我们运行它时,会收到一条错误信息 /usr/local/LinkServer/LinkServer gdbserver MIMXRT798S:EDNA INFO: Exact match for MIMXRT798S:EDNA found INFO: Selected device MIMXRT798S:EDNA CRITICAL: Critical error ERRMSG: launcher.core.utils.NoFreePortError: No available port in range 11111:11211 for host 您能帮助我们解决这个问题吗?谢谢。 开发板 Re: LinkServer error: No available port 你好@TaliB i.MX RT700 仍在试生产中,因此,我只想提醒您,您的主要支持渠道是您的直接恩智浦代表。 你是本机运行 Linux 还是在虚拟机中运行?另外,你在使用哪个发行版? 我看到您正在运行 GDB 服务器命令。我不知道您的操作系统是否存在这个问题。我们可以通过测试其他链接服务器命令来缩小问题范围。您可以尝试使用 LinkFlash 图形用户界面轻松测试其他命令。 谢谢、 迪亚戈
View full article
RT I.MX 1172 Secure RM and application note can not be found Hello all currently ,we are developing the project based on I.MX RT 1172. When we want refer tohe Secure Reference manual, we didn't find the source in the RT1172 page. and the secure debug application note and other application is also not found in anywhere. Cloud someone can tell me how to get the latest RT1172 Secure RM and RT1172 related application note? Re: RT I.MX 1172 Secure RM and application note can not be found Thanks for your updated information, Have you tried applying for additional permissions? Best Regards Re: RT I.MX 1172 Secure RM and application note can not be found I  think I should have the right to access the secure file. Because we have signed the NDA. the RT is also checked and granted from the secure file page.(refer to the below image.) Therefore, I don't how to download the this file.(We also contact the NXP FAE, he is also can not find and get this SRM of RT1172, cloud you please check it how to get the SRM of the RT1172? ) Re: RT I.MX 1172 Secure RM and application note can not be found Hi @Yiming2 , Thank you so much for your interest in our products and for using our community. I think you have no secure access rights, please check the following link. https://www.nxp.com/support/support/secure-access-rights:SEC-ACCESS Wish it helps you. If you still have question about it, please kindly let me know. Wish you a nice day! Best Regards MayLiu Re: RT I.MX 1172 Secure RM and application note can not be found this is the page which I try to find the SRM. But there is empty. https://www.nxp.com/products/i.MX-RT1170
View full article
RT I.MX 1172 Secure RM and application note can not be found Hello all currently ,we are developing the project based on I.MX RT 1172. When we want refer tohe Secure Reference manual, we didn't find the source in the RT1172 page. and the secure debug application note and other application is also not found in anywhere. Cloud someone can tell me how to get the latest RT1172 Secure RM and RT1172 related application note? Re: RT I.MX 1172 Secure RM and application note can not be found Thanks for your updated information, Have you tried applying for additional permissions? Best Regards Re: RT I.MX 1172 Secure RM and application note can not be found I  think I should have the right to access the secure file. Because we have signed the NDA. the RT is also checked and granted from the secure file page.(refer to the below image.) Therefore, I don't how to download the this file.(We also contact the NXP FAE, he is also can not find and get this SRM of RT1172, cloud you please check it how to get the SRM of the RT1172? ) Re: RT I.MX 1172 Secure RM and application note can not be found Hi @Yiming2 , Thank you so much for your interest in our products and for using our community. I think you have no secure access rights, please check the following link. https://www.nxp.com/support/support/secure-access-rights:SEC-ACCESS Wish it helps you. If you still have question about it, please kindly let me know. Wish you a nice day! Best Regards MayLiu Re: RT I.MX 1172 Secure RM and application note can not be found this is the page which I try to find the SRM. But there is empty. https://www.nxp.com/products/i.MX-RT1170
View full article
这是否能用于重写 OFDMA TF 文件? 我有三个 TF 文件(TF_Config_20MHz.txt、TF_Config_40MHz.txt、TF_Config_80MHz.txt)。 是否可以重写 TF 文件的内容或添加新的 TF 文件? 20 MHz 和 40 MHz 带宽以全音输出, ,但 80 MHz 带宽似乎以 106 音输出。 我还需要将费率调整为最差费率。 在此先表示感谢。 Re: Is this able to OFDMA TF-Files of Rewrite? 你好,Christine_Li 非常感谢你的回复。 我会考虑的。 Re: Is this able to OFDMA TF-Files of Rewrite? 你好,@kazus 我在我们的 LABTOOL_SDK-2.0.0.39.0 中查看了最新版本,是的,您说得没错,默认的20MHz 和 40MHz 带宽输出的是全音。 对于 20MHz:TrigUserInfoField=5;0;61;1;0;0;0;80,根据图 14。UM11749 中20 MHz 带宽的 RU 索引值,此处为 61表示使用全音调。 对于 40MHz:TrigUserInfoField=5;0;65;1;0;0;0;80,根据图 15。UM11749 中40 MHz 带宽的 RU 索引值,此处 65 表示使用全音。 但在默认情况下,80 兆赫的输出有 26 个音调 对于 80MHz:TrigUserInfoField=5;0;0;1;0;0;0;80,根据图 16。UM11749 中 80 MHz 频率的 RU 指数值,红色 0 表示使用 26 个音调。 如果您想改为使用全音调,请将该段从 0 改为67. 要调整速率,可以编辑 TrigUserInfoField 中的第五段。我认为默认 .txt20MHz、40MHz 和 80MHz 的文件,我们已经在使用最差的文件:MCS0。 如果要更改为其他 MCS 数据速率,如 MCS 7 数据速率,可将第五段改为 7,如下所示: TrigUserInfoField=5;0;3;1;7;0;0;80//RU 设置为 3, MCS 设置为 7 以上红色字体为 RU 指数(用于音调),蓝色字体为 MCS 数据速率。 希望我的解释能让你明白。 顺祝商祺! Christine。 Re: Is this able to OFDMA TF-Files of Rewrite? 你好,@kazus 请允许我向电台的同事确认一下。 一旦确认,我会通知你们。 顺祝商祺! Christine。 Re: Is this able to OFDMA TF-Files of Rewrite? 嗨, Christine_Li 20MHz 和 40MHz 带宽以全音输出,但 80MHz 带宽似乎以 106 音输出。 此外,我还需要将费率调整为最差费率。 我该如何重写下面的文件? 另外,请介绍一下 40MHz 和 80MHz。 =========================================== OFDMA_20MHz.txt FRAME_CTRL_TYPE=1\\ IEEE_TYPE_CTRL_TYPE=2\\ TRIGGER \\配置持续时间字段 \ 最大持续时间 FRAME_DURATION=5484\0x156C \\ 配置触发器帧的公共信息字段\\ HE_Trigger_Frame.triggerField.triggerType = BASIC_TRIGGER; \\ HE_Trigger_Frame.triggerField.ULLEN = 1000;\\ Max\ He_Trigger_Frame.triggerField.csRequired = 1000;\\ Max\ He_trigger_Frame.triggerField.csRequired = 1000; \\ Max \ He_trigger_Frame._frame.trigcommonfield.ULBW = TB_BW_20MHZ;\\ HE_Trigger_Frame.trigcommonfield.LTFTYPE = LTF_1_GI_1_6US;\\ HE_Trigger_Frame.trigcommonfield.LTFSYMBOL = 0;\\ HE_Trigger_Frame.trigcommonfield.LTFSYMBOL = 0;\\ HE_Trigger_Frame.trigcommonfield. trigger_frame.trigcommonfield.ulstBC = FALSE; \\ HE_Trigger_frame.trigcommonfield.ldpcess = TRIGGER_FRAME.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigcommonfield.aptxpwr = 0\\ HE_\ he_trigger_frame.trigcommonfield.spatialReuse = 65535; \\ HE_Trigger_Frame.trigcommonfield.doppler = FALSE;\\ He_trigger_frame.trigger_frame.trigger_frame.trigcommonfiel TrigCommonField=0;1000;0;0;0;1;0;0;0;1;0;1;0;65535;0;511 \\ 配置触发帧的用户信息字段\\ he_trigger_Frame.triguserInfoeld.aid12 = (5 & 0xFFF); \\ He_trigger_frame.triguserInfoeld.ruallocreg = 0;\\ He_trigger_Frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_frame.trigger_framfield.ulcodingType = CODING_TYPE_LDPC; \\ HE_Trigger_Frame.triguserInfoeld.ulmcs = 0;\\ HE_Trigger_Frame.trigserInfoild.uldCM = FRAME; \\ HE_Trigger_Frame.triger_frame.triger_frame.triger_frame.triger_frame.triger_frame.triger_frame.trigser UltargetRSSI = 80; TrigUserInfoField=5;0;61;1;0;0;0;80 \\ 配置触发器相关用户信息字段\\ HE_Trigger_Frame.basicTriguserinfo.mpdu_mu_sf = MPDU_SPACING_MULT_1; \\ He_trigger_Frame.basicTrigger_Frame.basicTrigger_Frame.basicTrigger_Frame.basicTrigger_Frame.basicTrigger_Frame.basicTrigger_Frame.basicTrigger_Frame.basicTrigger_Frinfo.pref_ac = TB_AC_VO;basicTriguserInfo=0;0;0;0;0 Re: Is this able to OFDMA TF-Files of Rewrite? 你好,@kazus 您在使用我们的 IW611 吗? 您可以参考本节内容编辑配置文件: 13.3 编辑 UM11749中的配置文件。 顺祝商祺! Christine。
View full article
リンカーはリファレンスマニュアルに書かれているようにVLE関数間のギャップを圧縮しません。 「CodeWarrior Development Studio for Power Architecture ®プロセッサ ビルド ツール リファレンス」には次のように記載されています。 -func_align   実行可能コード内の関数の配置を指定します。   構文 -func_align 4 | 8 | 16 | 32 | 64 | 128   備考 デフォルトの配置は 4 です。ただし、最適化レベル 4 では、アライメントは 16 に変わります。-func_align 4 (またはなし) を使用しており、VLE 用にコンパイルしている場合、リンカーは VLE 関数間のギャップを圧縮します。 • これらの関数がClassic PPC関数によって呼び出されない場合 • 関数のアライメントは 4 より大きい。 注:ギャップの圧縮は、CodeWarrior コンパイラによってコンパイルされたファイルでのみ行われます。 ------------------------ 質問: 1.ここに矛盾はありませんか、それともこれをどのように理解すべきでしょうか? 「-func_align 4 (またはなし) を使用しており、VLE 用にコンパイルしている場合、リンカーは VLE 関数間のギャップを圧縮します。」   「• 関数のアライメントは 4 より大きいです。」 2. 「クラシックPPC機能」とは何ですか? 3. 関数間にまだギャップ「00 00」があるのはなぜですか。VLE コードをコンパイルし、Codewarrior プロジェクト設定の「関数のアライメント」(コード生成 -> EPPC プロセッサ) が「4 バイト」に設定されています (添付ファイルを確認してください)。     Re: Linker does not compress gaps between VLE functions like Reference Manual say FORCEFILES { "module.o"} 何らかの理由で、リンク元に約束を忘れる権利が与えられます。同じ問題が発生する場合は、モジュール名を削除してください。 Re: Linker does not compress gaps between VLE functions like Reference Manual say UPD1: 空のプロジェクトを作成し、サンプル関数を入力しましたが、このプロジェクトでは関数間にギャップは生成されません。私はこれで遊んでいます Re: Linker does not compress gaps between VLE functions like Reference Manual say ...添付ファイル...
View full article
LX2080 LX2080のセキュアブートモードをハードウェアとソフトウェアで無効にする方法 Re: LX2080 LX2080C A 72232B の場合、 LX2160 のデータシート で「A」の「SEC 無効、SEC セキュアブートを含む」 と確認できます 。セキュアブートが有効になっているかどうかは、どのようにして確認するのですか?   よろしくお願いします。   Re: LX2080 LX2080CA72232B よろしくお願いします。 Re: LX2080 LX2080 の部品番号をお知らせください。 よろしくお願いします。
View full article
PCAL 6534 Power sequence Is there any power that needs to be turn on first, VDD(P) or VDD(I2C_BUS)? Does it need a power sequence for PCAL6534? Re: PCAL 6534 Power sequence Hi, There is no exact timing sequence specified. If VDD_I2C is powered first in your design, ensure that VDD_P ramps up promptly and reaches the POR threshold before any I²C communication is attempted. Note that the POR reset delay time is approximately 1 µs after VDD_P crosses the threshold. So to ensure reliable operation, allow a short delay (e.g. a few microseconds) after VDD_P is stable before initiating I²C transactions. BRs, Tomas Re: PCAL 6534 Power sequence Is there exact power sequence that contains timing? Actually, VDD_I2C is powered first than VDD_P in design. Re: PCAL 6534 Power sequence Hi, VDD(P) should be powered first or at least not later than VDD(I2C_BUS). This ensures the internal circuits and registers are properly initialized before communication begins. BRs, Tomas
View full article
How to disable JTAG on IMX95 and reuse JTAG as GPIO HelloI would like to use these GPIOs for JTAG to control other devices, but I found that these GPIOs cannot be controlled with JTAG.How can I disable JTAG and repurpose it as GPIO? Linux Re: How to disable JTAG on IMX95 and reuse JTAG as GPIO Hello, 1. I couldn't find the download link for the manual. Could you please send me the download link? 2. Is there any other way to disable this function besides using fuses? 3. I haven't modified the jtag configuration yet. The/sys/class/gpio pins in the system cannot be controlled because they are reused as jtag by default? Re: How to disable JTAG on IMX95 and reuse JTAG as GPIO Hello, To disable JTAG I suggest you take a look in security reference manual, there is a section where describes the fuse to disable this function in the processor. Once you disabled the JTAG you need to change the IOMUX registers (in device tree for example) to configure JTAG pins as GPIO functions. Best regards.
View full article
HDMI Interface is not working in I.MX8QM Evaluation Board. Hi, HDMI Interface is not working in I.MX8QM Evaluation Board and all other interfaces are working Previously HDMI interface worked properly, and we are using same previous SD card and Board booting through SD card. Now Issue Showing as "cdns-mhdp-imx 56268000.hdmi: Falling back to sysfs fallback for hdmitxfw.bin". Please help us to resolve this Issue. Re: HDMI Interface is not working in I.MX8QM Evaluation Board. The i.MX8 QM provides an HDMI transmitter capable of supporting an HDMI2.0 compatible output, a Display Port 1.3 compatible output, or an embedded Display Port 1.4 compatible output.  Here which version BSP are you using? Are you using the demo images or the images you build youself?  The firmware file hdmitxfw.bin should be present in /lib/firmware/.   On yur board, run: ls /lib/firmware/hdmitxfw.bin If the file is missing, that’s the root cause.  
View full article
KW45 based BLE dongle Dear Team, I look over the NXP product lineup and say many MCU have a BLE dongle which best suits some application for Testing and development. I want to know if any such device exists for KW45 MCU? I am in real need for KW45 based dongle. If it does not exist -  1. Do we have any other dongle which I can use to receive data over BLE which I can program the same code made for KW45 MCU ? 2. I know point 1 is difficult, but if we can migrate code from KW45 to other MCU and do this? Example - KW40 can use same code by migrating KW45 code and doing some changes. If 2 is possible, can you provide MCU details and Migration guide if available? BR, Tomaru USB-KW38 USB-KW41Z BLE-NFC KW45B41Z-EVK KW45  Kinetis K Series MCUs Re: KW45 based BLE dongle Hi, @tomaru  Anything else I can do for you on this case? If no other concerns, would you mind to mark my answer as a solution for this case so that we can close this thread? Please feel free to create new case to us if you meet any other issue during using our products. Best regards, Christine. Re: KW45 based BLE dongle Hi, @tomaru  I am so sorry for the inconvenience because we do not have a USB-Dongle based on KW45 BLE chip. 1. Do we have any other dongle which I can use to receive data over BLE which I can program the same code made for KW45 MCU ? ==>Sorry, we do not have. 2. I know point 1 is difficult, but if we can migrate code from KW45 to other MCU and do this? ==>Sorry, I worry it is not possible.  You might think about our other USB-Dongles such as USB-KW38, USB-KW40, USB-KW41. I know it is not convenient for you, but currently, we do not have such kind of dongle for KW45 and also not possible to migrate code from KW45 to other USB-Dongles. Best regards, Christine.
View full article
TJA1028T/5V0/20/1JとTJA1028T/5V0/20/1の違い こんにちは、 部品番号の違いがわかる人はいますか? TJA1028T/5V0/20/1 Jと TJA1028T/5V0/20/1 ですか? よろしくお願いします。
View full article
Code Warrior for MCU v10.6 with S08/RS08 microcontrollers Hi, I have installed CodeWarrior Development Studio, CodeWarrior for MCU v10.6, and I'm trying to work with a HCS08 (S08/RS08) microcontroller. During the installation, I was unable to access the Freescale website to download the software package for this microcontroller. After the installation, when I try to install additional software, the problem persists. Please, could anybody send me the installation package for this microcontroller or help me resolve the issue? Re: Code Warrior for MCU v10.6 with S08/RS08 microcontrollers Hi. I found the soltion to my problem. I´ll post it here for anybody's help. You just have to open the available the software sites and change the 'freescale.com' site with 'cache.nxp.com'. In my case: FSL MCU Eclipse Update Site - http://cache.nxp.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite Hope it helps! For me, one day lost...
View full article
Quectel_SG560D(CPU QCM6490) Android 12 PN7160 移植ガイド Andriod 12用のPN7160移植ガイドはありますか? 弊社のハードウェア プラットフォームは Quectel_SG560D (CPU QCM6490) です。 NFCコントローラーソリューション Re: Quectel_SG560D(cpu QCM6490) Android 12 PN7160 porting guide こんにちは@SunYuxiang 添付ファイルをご確認ください。 ただし、Android 13 から始めることをお勧めします。
View full article
REQUEST TO PROVIDE ME UART EAMPLE PROJECT FOR S32K311 USING S32 DS3.6.2 Hello, I am currently working on the S32K311 MCU using S32 Design Studio 3.6.2. Could you please provide me with a UART example project (basic transmit/receive demonstration) compatible with this setup? Having this reference will help me get started with communication on S32K311 and build further applications. Re: REQUEST TO PROVIDE ME UART EAMPLE PROJECT FOR S32K311 USING S32 DS3.6.2 Hello @Kaushal9511 , Thank you for the update. To help isolate the issue, I recommend performing a simple loopback test — connect the TX and RX pins together and send a character. If reception works in this configuration, the issue is likely external (e.g., wiring, terminal settings, or signal integrity). Best regards, Pavel Re: REQUEST TO PROVIDE ME UART EAMPLE PROJECT FOR S32K311 USING S32 DS3.6.2 Hello Pavel, Thank you for your detailed guidance on reusing the LpuartFlexio_Uart_Ip_Example_S32K344 project for the S32K311. I followed your steps and was able to successfully transmit data using LPUART. However, I am facing an issue with receiving data: Transmission works correctly and I can see the output on the terminal. Reception does not seem to work, and no data is being captured by the MCU. Could you please advise me on the correct configuration or additional steps required to enable UART reception on S32K311? Re: REQUEST TO PROVIDE ME UART EAMPLE PROJECT FOR S32K311 USING S32 DS3.6.2 Hello @Kaushal9511 , I'm assuming you're using S32K3 RTD 6.0.0. Unfortunately, there are no pre-existing UART examples specifically for S32K311, but you can easily create one by reusing an example from a similar device. Here's a step-by-step guide: Create a project from an existing example that uses the UART stack, e.g. LpuartFlexio_Uart_Ip_Example_S32K344 Open the Configuration Tool, resolve any issues, and build the project. Now, create a new application project for S32K311 (make sure to attach the RTD version). Open the Configuration Tool for the new project, resolve any issues, and click Update Code. Stay in the Peripherals tab. Go to File → Import → S32 Configuration Tools → Import Configuration (*.mex) Select the .mex file from the previous project, e.g your_workspace\LpuartFlexio_Uart_Ip_Example_S32K344\LpuartFlexio_Uart_Ip_Example.mex Choose "Import the configuration as a new one" Click Finish Some errors will appear - this is expected. In the Peripherals tab, resolve all issues (e.g. missing drivers -> Manage SDK Components). Click on the Pins tab. When prompted to switch the configuration to S32K311, click Yes. Adjust the Clocks to meet the S32K311 requirements (refer to the S32K3 Reference Manual for details). Click Update Code again. Return to the C/C++ editor. Copy the main.c file from the original example LpuartFlexio_Uart_Ip_Example_S32K344  into your new project. Comment out or remove the lines with Exit_Example and #include "check_example.h"   Build the project. This approach allows you to reuse existing examples even for devices that are not directly supported by preconfigured demos.  Best regards, Pavel
View full article
S32K3 Config Tool with Crypto Driver Javascript error Hello team, I am trying to create an example using Design Studio 3.6.0 with RTD 6.0.0 QLP1 and specifically when using the Crypto Driver and change the name of the NvmKeyCatalog I start seeing interface issues like the following picture: Until I get the following error indicating that there was an error in the execution of Javascript. This only happens when using the Crypto_43_HSE and I hadn't had any issues with Crypto_43_ACE or other peripherals. Best Regards, Jesus Cinco Priority: HIGH S32_CONFIG_TOOL Source: NXP Internal Re: S32K3 Config Tool with Crypto Driver Javascript error @Jesus_Cinco  I tested again on S32DS 3.6.4, this issue was disapeared Please try this version S32DS Re: S32K3 Config Tool with Crypto Driver Javascript error @Jesus_Cinco  Dev team said that there was a bug reported for that, I'm looking for that bug's info again and will share to you later. It seems like there're some conditions in the container's name, if you change that name it would raise error.  You should keep the name as default to avoid this bug Re: S32K3 Config Tool with Crypto Driver Javascript error Hi Cuong, It doesn't let me modify anything from that point and the error just keeps popping up. Best Regards, Jesus Cinco Re: S32K3 Config Tool with Crypto Driver Javascript error Hi @Jesus_Cinco  It looks like the configuration in  CryptoKeyElement container is blank. Please config this container and other error container. Or you can refer the Crypto example provided along with the RTD 6.0.0 QLP1
View full article
IMX6 SABRESDB に Android OS をインストールするためのファイルへのリンクと手順のリクエスト NXPコミュニティの皆様、こんにちは。 現在、 IMX6 SABRESDB開発ボードに Android OS をロードする作業を行っていますが、助けが必要です。SABRESDB で Android を起動して実行するために必要なすべてのファイルへの直接リンクと詳細なステップバイステップ ガイドを探しています。 誰かが以下の情報を提供してくれると本当にありがたいです: 必要なファイルへの直接リンク: 事前に構築された Android OS イメージまたはソース コード。 SabresDB ボード用の正しいカーネル ファイル。 インストールを正常に行うために必要な、ブートローダ ファイルや特定のデバイス ドライバなどの追加の依存関係。 ステップバイステップのインストール手順: 開発ボードにAndroidをフラッシュしてインストールするための完全なガイド 最適な機能を実現するために従う必要がある構成手順。 フラッシュ プロセスを支援するために必要なツールまたはユーティリティ (U-Boot、fastboot、UUU など)。 トラブルシューティングのヒント(ある場合): インストール中に発生する可能性のある一般的な問題と推奨される解決策。 NXP のドキュメントとフォーラムの投稿を検索しましたが、 SabresDB の詳細すべてを網羅した包括的なガイドは見つかりませんでした。また、 Android が利用できない場合はお知らせください。また、 Linux の同じ要件を教えてください。あなたがCAN提供できるあらゆる援助、リソース、または指針は非常にありがたいです! @アンドロイド @imx @IMXSABRESDB @nxp @nxpコミュニティ @nxpコミュニティ_ イムクス6 @インストールの問題 Android i.MX6 全て i.MX6デュアルプラス | 6クアッドプラス i.MX6Quad Re: Request for Links to Files and Instructions for Installing Android OS on IMX6 SABRESDB こんにちは@BDL-DNE 、 最新の Linux イメージをボードにダウンロードしてみると、簡単に起動できます。 i.MX アプリケーションプロセッサ向け組み込み Linux | NXP Semiconductors Android BSP の場合、ダウンロード時に管理者の制限が必要です。 Android デモ画像はこちらです: i.MX アプリケーション プロセッサ向け Android OS | NXP Semiconductors ご質問がありましたらお気軽にお問い合わせください よろしくお願いいたします。 リタ Re: Request for Links to Files and Instructions for Installing Android OS on IMX6 SABRESDB これは私が直面しているエラーです 「」 ll-7833@LL:~/Documents/IMX6/P9.0.0_2.2/android_p9.0.0_2.2.0-ga_image_6qsabresd $ sudo ./uuu_imx_android_flash.sh -f imx6qp -p sabresd -e このスクリプトは uuu 1.2.135 バージョンで検証されていますので、このバージョンに合わせてください。 dtboがサポートされています 回復がサポートされている u-boot-imx6qp.imxをブートローダーのパーティションにフラッシュするための行を生成する gptのパーティションにpartition-table.imgをフラッシュするための行を生成します。 dtbo-imx6qp.img を dtbo のパーティションにフラッシュするための行を生成します。 boot.imgをブートパーティションにフラッシュするための行を生成する リカバリパーティションにrecovery-imx6qp.imgをフラッシュするための行を生成する システムのパーティションにsystem.imgをフラッシュするための行を生成します。 vendor.img をベンダーのパーティションにフラッシュするための行を生成します。 vbmeta-imx6qp.img を vbmeta のパーティションにフラッシュするための行を生成します。 uuu スクリプトが生成されました。生成された uuu スクリプトを使用して uuu の呼び出しを開始します。 nxp imx チップ用の uuu (ユニバーサル アップデート ユーティリティ) -- libuuu_1.2.135-0-gacaf035 成功 0 失敗 1 "" 1:11 1/ 1 [HID(W):LIBUSB_ERROR_TIMEOUT ] SDP: ブート -f u-boot-imx6qp-sabresd-uuu.imx " CANこの問題を解決できますか? よろしければ、先ほどおっしゃった Android パッケージの代わりに使用できる別の適切な Android または Linux パッケージを提案していただけますか。 Re: Request for Links to Files and Instructions for Installing Android OS on IMX6 SABRESDB こんにちは@BDL-DNE 原因は何かありますか?どのようなエラーに遭遇しましたか?イメージのダウンロードエラーですか?それともボード上のブートエラーですか? よろしくお願いいたします。 リタ Re: Request for Links to Files and Instructions for Installing Android OS on IMX6 SABRESDB このファイルを試してみましたが、エラーが発生しています。CAN助けてください。 Re: Request for Links to Files and Instructions for Installing Android OS on IMX6 SABRESDB 弊社の Web サイトでは、IMX6 SABRESDB の最新の Android BSP サポートはAndroid P9.0.0_2.2.0 (Linux 4.14.98 カーネル) であることが確認されており、参照できるドキュメントをダウンロードできます。
View full article