Multi Source Translation Content

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

Multi Source Translation Content

Discussions

Sort by:
i.MX 8QuadMax Multisensory Enablement Kit (MEK) 在庫あり こんにちはチーム、 8QuadMaxマルチセンサイネーブルメントキット(MEK)の購入を検討していますが i.MX 在庫があるときに在庫がありませんか? ありがとうございます よろしくお願いします。 ヴィーラパンPA。
View full article
设置U-Boot密码 大家好, 我目前正在尝试设置 imx-u-boot 密码。我是否只需要 u-boot defconfig 中的以下三行: CONFIG_AUTOBOOT_KEYED=y CONFIG_AUTOBOOT_ENCRYPTION=y CONFIG_AUTOBOOT_STOP_STR_SHA256="..." 或者还需要什么吗? 干杯, 尼特什 i.MX 8 系列 | i.MX 8QuadMax (8QM) | 8QuadPlus Yocto Project
View full article
ハードウェアリセットまたはソフトウェアリセット こんにちは、 誰かがウォッチドッグタイマーを有効にし、ソフトウェアのリセットを開始する手順を手伝ってくれませんか。車両アプリケーションコードを書くためにS32k14x EAR SDK v0.8.6を使用しています。だから私はウォッチドッグタイマーを有効にしたいので、どこから助けを得ることができる知識ベースを把握することができませんでした。また、Hardawreのリセットとソフトウェアのリセットプロセスにも助けが必要です。 どなたか手伝っていただけると本当に助かります。よろしくお願いいたします #S32K146
View full article
Setup U-Boot Password Hello all, I'm currently trying to set up an imx-u-boot password. Do I just need the following three lines in the u-boot defconfig: CONFIG_AUTOBOOT_KEYED=y CONFIG_AUTOBOOT_ENCRYPTION=y CONFIG_AUTOBOOT_STOP_STR_SHA256="..." Or is anything more needed? Cheers, Nitesh i.MX 8 Family | i.MX 8QuadMax (8QM) | 8QuadPlus Yocto Project Re: Setup U-Boot Password Hello @pilotnite  Yes, it should works, also you can look this thread if a similar issue occurred. Best regards. Salas.
View full article
imx8m mini evk の GPIO ピン 18 (GPIO5_Io11) で出力を取得する サンプルコードを使用して、GPIO 5ピン11(物理的にはピン18)でLEDを点滅させる出力を取得しようとしていますが、結果を取得できません。 マルチメータを使用して、ピン18であるグランド(ピン20)に対する電圧をチェックしています。 これがコードです /* * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016-2020 NXP * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "pin_mux.h" #include "clock_config.h" #include "board.h" #include "fsl_debug_console.h" #include "fsl_gpio.h" #include "fsl_iomuxc.h" // Include the IOMUXC header if not already included /******************************************************************************* * Definitions ******************************************************************************/ #define EXAMPLE_LED_GPIO GPIO5 #define EXAMPLE_LED_GPIO_PIN 11U /******************************************************************************* * Prototypes ******************************************************************************/ /******************************************************************************* * Variables ******************************************************************************/ /* The PIN status */ volatile bool g_pinSet = false; /******************************************************************************* * Code ******************************************************************************/ /*! * @brief Main function */ int main(void) { /* Define the init structure for the output LED pin*/ gpio_pin_config_t led_config = {kGPIO_DigitalOutput, 0, kGPIO_NoIntmode}; /* Board pin, clock, debug console init */ /* Board specific RDC settings */ BOARD_RdcInit(); BOARD_InitBootPins(); BOARD_BootClockRUN(); BOARD_InitDebugConsole(); BOARD_InitMemory(); /* Configure the IOMUXC for GPIO5_IO08 (physical pin 18) */ IOMUXC_SetPinMux(IOMUXC_ECSPI2_MOSI_GPIO5_IO11, 0U); IOMUXC_SetPinConfig(IOMUXC_ECSPI2_MOSI_GPIO5_IO11, 0x10B0u); /* Init output LED GPIO. */ GPIO_PinInit(EXAMPLE_LED_GPIO, EXAMPLE_LED_GPIO_PIN, &led_config); /* Print a note to terminal. */ PRINTF("\r\n GPIO Driver example\r\n"); PRINTF("\r\n The LED is blinking.\r\n"); while (1) { SDK_DelayAtLeastUs(300000, SDK_DEVICE_MAXIMUM_CPU_CLOCK_FREQUENCY); #if (defined(FSL_FEATURE_IGPIO_HAS_DR_TOGGLE) && (FSL_FEATURE_IGPIO_HAS_DR_TOGGLE == 1)) GPIO_PortToggle(EXAMPLE_LED_GPIO, 1u << EXAMPLE_LED_GPIO_PIN); #else if (g_pinSet) { GPIO_PinWrite(EXAMPLE_LED_GPIO, EXAMPLE_LED_GPIO_PIN, 0U); g_pinSet = false; } else { GPIO_PinWrite(EXAMPLE_LED_GPIO, EXAMPLE_LED_GPIO_PIN, 1U); g_pinSet = true; } #endif /* FSL_FEATURE_IGPIO_HAS_DR_TOGGLE */ } } Re:imx8m mini evkのGPIOピン18(GPIO5_Io11)で出力を取得する ご提案とテストビデオのご@Chaviraいただきありがとうございます。 主な問題は、内部プルアップ/ダウン抵抗を有効にするPKEビットを有効にしていないことでした。2つ目は、フルドライブの強度とフルスピードを設定することで、PIN番号19で3.3ボルトを得ることができました(@Chaviraによって修正されました)。 登録内容は下記の通りです。 Bits | Field | Value -----|-------|------ [15] | | 0 [14] | | 0 [13] | | 0 [12] | HYS | 1 [11] | PUS1 | 1 [10] | PUS0 | 1 [9] | PUE | 1 [8] | PKE | 1 [7] | ODE | 0 [6] | DSE3 | 1 [5] | DSE2 | 1 [4] | DSE1 | 1 [3] | DSE0 | 1 [2] | SPEED1| 1 [1] | SPEED0| 1 [0] | SRE | 0 0001 1111 0111 1110 0x1F7E 初期化は、以下の通りです。 IOMUXC_SetPinMux(IOMUXC_ECSPI2_MOSI_GPIO5_IO11, 0U); IOMUXC_SetPinConfig(IOMUXC_ECSPI2_MOSI_GPIO5_IO11, 0x1F7Eu);   @Chavira、添付の図に示されているように、11でGPIO5の拡張 IO信号を示すようにEXP_IO11ピン16を使用していない理由を説明できるでしょうか。私には理解できません。(付属のハードウェアユーザーガイドの13ページの表6にも示されています。 感謝 Re:imx8m mini evkのGPIOピン18(GPIO5_Io11)で出力を取得する 感謝。はい、vscodeでもデバッグできますが、Ozoneはメモリの詳細を表示しますが、これはより良く見えます。GPIOが機能するための提案はありますか。Linuxを使用してGPIOが見つからないと表示されるため、確認することさえできません。デバイスツリーでは、gpiodetectは4つのチップを示しています。 何か提案はありますか? ご心配をおかけしていただきありがとうございます Re:imx8m mini evkのGPIOピン18(GPIO5_Io11)で出力を取得する 返信とテストをしてくださった@Chaviraに感謝します。 私はvscodeとvscodeのmcuxpresso拡張子を使用してプログラムをコンパイルしています(MCUXpresso IDEではimx8m mini evkをサポートしていないため)、Ozone(JTAG)を使用してelfファイルを実行しています。 電圧計で18ピンと19ピンの両方を確認しましたが、そこには電圧が表示されません。 imx8mm-evk-rpmsg.dtbデバイスツリーファイルとLF_v6.6.36-2.1.0_images_IMX8MMEVKを使用していますA53 側の Linux イメージ。何が間違っているのか、デフォルトのデバイスツリーであるimx8mm-evk.dtbで確認したかどうかはわかりませんが、運が良かったわけではありません。 cortex M4のデバッグメッセージは、デバッグコンソールでも確認できます
View full article
S32DS Update RTD5.0 and Compile with non_cacheable_bss overflow error Hi, the tech officiers, I have developed a S32M27x project in S32K3XX_S32M27X_RTD4.4, which was working. But after I installed RTD5.0, change the project SDK to RTD5.0, update source code and rebuild the project. I got non_cacheable_bss overflow issue as shown. I compared the map files between RTD5(on right) and RTD4(on left). I found it is because DET add many global variables. DET is auto generated. How should I solve this issue? Re: S32DS Update RTD5.0 and Compile with non_cacheable_bss overflow error Hi@XinWang0219 If you don't use Det.c, you can actually delete the det.c file in the RTD->Source directory path.
View full article
PTE13 ADC1_S19 and VRC_CTRL Hello, I am facing issues with reading the analog channel s32k344, specifically on port PTE13 ADC1_S19. I found something on the forum about VRC_CTRL. I tried disabling this function, but then the readings became 0. What might I be forgetting to configure for the ADC readings to work? Re: PTE13 ADC1_S19 and VRC_CTRL Thanks, its working. I took another MCU. Unfortunately the issue has been caused, because ADC pin stopped working. Re: PTE13 ADC1_S19 and VRC_CTRL Pay attnention to following thread: https://community.nxp.com/t5/S32K/S32K3-PTE13-ADC1-S19-acquisition-abnormal-jumps/td-p/1606820 If VRC_CTRL is disabled, then you can use it as ADC channel. Check whether you don't have it driven by GPIO or other function to GND (SIU configuration for PTE13 i.e.GPIO[141]) or whether this signal is not externally pulled down.
View full article
Yocto iMX8M Plus 启动内核循环并显示“未找到 eth_lpi” iMX8M Plus 在 Variscite DART-MX8M-PLUS 上为 Yocto 配置,从 eMMC 启动。 启动内核时,它无法完成启动,因为它会循环,一遍又一遍地打印“未找到 IRQ eth_lpi”消息。我怀疑问题可能出在设备树上,但不能确定,也不知道如何解决这个问题。 附有启动日志。 提前感谢您的任何指导。 i.MX 8 系列 | i.MX 8QuadMax (8QM) | 8QuadPlus Yocto Project 回复:Yocto iMX8M Plus 启动内核循环,显示“未找到 eth_lpi” 感谢您的快速回复。在我们的案例中,我们确实有两个以太网设备,但其中一个没有被看到。正如你所说,它停止启动,这很奇怪。将继续与 Variscite 支持方进行讨论。 再次感谢。设备树链接可能会派上用场。 回复:Yocto iMX8M Plus 启动内核循环,显示“未找到 eth_lpi” 你好,很抱歉没有回复此帖子。我确实解决了这个问题; 在我向 Variscite 描述了这个问题之后,他们给出了如下回复: “您所报告的信息只是一个预期的无害警告。 您可能需要编辑设备树并删除此处的第二个以太网 https://github.com/varigit/linux-imx/blob/lf-6.1.y_var03/arch/arm64/boot/dts/freescale/imx8mp-var-dart-dt8mcustomboard.dts#L172-L198 “ 从设备树中删除 &eqos 和 &fec 块后,警告消息消失。不确定为什么这似乎阻止了它启动。 希望这有帮助。 回复:Yocto iMX8M Plus 启动内核循环,显示“未找到 eth_lpi” 抱歉,再次提起旧话题,但这个问题您找到解决方案了吗?我们处于完全相同的情况,并且收到完全相同的错误消息。我们已经与 Variscite 取得联系,但如果您有一个快速的解决方案,或者只是一个指示,我们可能会更快地到达那里。
View full article
S32K348 HVBMS 800 - NO BJB MBDT code generation and flash Dear NXP Team, We want to connect only CMU and S32K348 MC with a TPL along with 18Cell emulator but want to discard or not connect BJB for initial setup . Since the RD-HVBMSCT800BUN Read S32CT model is already configured with Battery Junction Box. 1. Is there anything to be done in configuration to remove Battery Junction Box ? 2. If I am not connecting Battery Junction Box , try to power on CMU and S32K348,will the code flash without any errors since BJB is not connected?  Regards, Shiva  Re: S32K348 HVBMS 800 - NO BJB MBDT code generation and flash Thank you. We managed to do the above and the setup works fine. I have another query on weird behavior of cell voltages on CAN which came up when I tried to monitor min and max voltages for individual cell strings . Please help on the ticket below. https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/Solver-settings-in-Matlab-HVBMSSCTBUN/td-p/1995183 Re: S32K348 HVBMS 800 - NO BJB MBDT code generation and flash Hello @ShivaB, Thank you for your interest in our MBDT for BMS! I will try to answer your questions below: 1. Is there anything to be done in configuration to remove Battery Junction Box ? There are three main components/locations related with the Battery Junction Box: hardware configuration, BCCs initialization and the communication with the BCC at runtime. The hardware configuration is achieved through the S32CT or EBT, in this case the S32CT. These components related with the BJB are: Bcc_772C, and the Bms_common where the settings related to the BJB and Transactions descriptors are stored, while the Phy_665a contains mainly the TPL type of the TPL busses configured in the transceiver. To be honest, if you don't have a BJB for now, you can leave the settings untouched and get rid of the configuration later, if no BJB will be added to your system. Hardware Initialization: Initialization is performed into 2 main parts: Board Initialization, which configures the BCC_772C RTD driver component. This entry is configured from the Model Settings, and initializes the BCC_772C component. It can be disabled following the pattern below: The Initialization of each BCC device - on the BJB there are 2 BCCx772C which works together for the redundancy. In order to work properly, they need to be enumerated, so that they receive each an BCC ID. This process can be commented in the Initialize Function, the INIT_772C.  The periodic Current measurements, which starts the global conversion and each step time it reads the measured BCC analog values. Also needs to be commented when no BJB is used.  2. If I am not connecting Battery Junction Box , try to power on CMU and S32K348,will the code flash without any errors since BJB is not connected?  Of course the application will show errors and timeouts when you are not connecting the BJB, but the CMU part shall work as expected. Hope this helps, Marius Re: S32K348 HVBMS 800 - NO BJB MBDT code generation and flash Can someone respond on this please ? 
View full article
S32DS は RTD5.0 を更新し、non_cacheable_bss オーバーフロー エラーでコンパイルします こんにちは、技術担当の皆さん、 S32K3XX_S32M27X_RTD4.4でS32M27xプロジェクトを開発しましたが、これは機能していました。 しかし、RTD5.0をインストールした後、プロジェクトのSDKをRTD5.0に変更し、ソースコードを更新してプロジェクトを再構築します。示されているようにnon_cacheable_bssオーバーフローの問題が発生しました。 RTD5(右)とRTD4(左)のマップファイルを比較してみました。これは、DETが多くのグローバル変数を追加するためであることがわかりました。DET は自動生成されます。この問題を解決するにはどうすればよいですか?
View full article
HARDWARE RESET or SOFTWARE RESET Hi there, Can someone help me with enabling a Watchdog timer and also steps to initiate Software reset. I am using a S32k14x EAR SDK v0.8.6 for writing my vehicle application code. So i want to enable Watchdog timer so couldn't able to figure any knowledge base where i can get help from. And also i need help in Hardawre reset and Software Reset process. It would be really helpfull if some one lends me hand here. Thanks in advance  #S32K146 Re: HARDWARE RESET or SOFTWARE RESET Hi @Julián_AragónM  Thank you for the information. Re: HARDWARE RESET or SOFTWARE RESET  Hi @akhilranga, For SW reset, please look at chapter 25.2.2.7 from the S32K Reference Manual, it explains the reset control register.  You can also use this example as reference, where a SW reset is implemented to test the ram retention: Example S32K144 RAM Retention S32DS.R1 - NXP Community. There is also this function in the system_S32K144.c file: For the watchdog, there are many community posts sharing some reference code, such as: Solved: WatchDog S32k144 - NXP Community Solved: watchdog test - NXP Community You can also refer to the examples inside the EAR SDK. Best regards, Julián
View full article
i.MX 8ULP Generic Timer base address Hi, I would like to know the base register address of the generic timer in i.MX 8ULP. In case of i.MX 8M Plus it is described in the reference manual as "System Counter_CTRL", but I am unable to find it in case of i.MX 8ULP. I would appreciate any help about this. Thank you. i.MX8ULP Re: i.MX 8ULP Generic Timer base address Hi @pengyong_zhang, Thank you for your reply and confirmation. Best regards. Re: i.MX 8ULP Generic Timer base address hi @NaKa85  I.MX8ULP does not have system Counter as same as i.MX8MP. Its call LPTMR on i.MX8ULP.please refer chapter 48 on i.MX8ULP RM. So it's base address is as follow: B.R
View full article
fs23 Lin mode swith question Hello, We encountered a question while debugging the FS LIN functionality. Specifically, we found that in debug mode, we cannot set the LINTRCV_FS23_TRCVMODE_OFF mode using the LinTrcv_fs23_SetMode() function. The code snippet is as follows: Std_ReturnType LinTrcv_fs23_SetMode(uint8 u8LinNetwork, LinTrcv_fs23_TrcvModeType eOpMode) { uint16 u16RegData = 0U; Std_ReturnType eStatus; LinTrcv_fs23_TrcvModeType eNewHwOpMode = LINTRCV_FS23_TRCVMODE_INVALID; /* Read M_LIN register. */ eStatus = Sbc_fs23_ReadRegister(SBC_FS23_M_LIN_ADDR, &u16RegData); if ((Std_ReturnType)E_OK == eStatus) { /* Set new register value. */ u16RegData &= ~(SBC_FS23_M_LIN_MODE_MASK | SBC_FS23_M_LIN_SLOPE_MASK| SBC_FS23_M_LIN_FS_DIS_MASK); if(TRUE == xG_drivers[u8LinNetwork].bLinSlowSlope) { u16RegData |= SBC_FS23_M_LIN_SLOPE_SLOW; } if(FALSE == xG_drivers[u8LinNetwork].bLinFailsafeDisable) { u16RegData |= SBC_FS23_M_LIN_FS_DIS_KEEP; } u16RegData |= ((uint16)eOpMode << SBC_FS23_M_LIN_MODE_SHIFT); eStatus = Sbc_fs23_WriteRegister(SBC_FS23_M_LIN_ADDR, u16RegData); .... /*Check the real hardware state*/ eStatus |= LinTrcv_fs23_GetMode(u8LinNetwork, &eNewHwOpMode); if((eNewHwOpMode == eOpMode) && ((Std_ReturnType)E_OK == eStatus)) { eStatus = (Std_ReturnType)E_OK; } else { eStatus = (Std_ReturnType)E_NOT_OK; } } return eStatus; } The eOpMode is LINTRCV_FS23_TRCVMODE_OFF,  the eNewHwOpMode  is LINTRCV_FS23_TRCVMODE_NORMAL. The manual states that in debug mode, LIN defaults to active mode. Is this behavior normal? Thanks! Re: fs23 Lin mode swith question Hi @gumu , I got confirmation from hardware team that it's a normal behaviour. In debug mode, the transceiver mode is forced ACTIVE. So even if you try and change the LIN_MODE field to OFFLINE (OFF, 2b00) then the transceiver stays in active mode. Re: fs23 Lin mode swith question Hi, I have to check with hardware team. Can you please let me know what version of FS23 that you have? Or what is the part number? Re: fs23 Lin mode swith question Hi Quang (@quangvuanh), Could you please help with this question from Anhui Zhitu Technology China? Thanks & BRs, Tomas
View full article
S32K348 HVBMS 800 - 无 BJB MBDT 代码生成和闪存 尊敬的恩智浦团队: 我们只想将 CMU 和 S32K348 MC 与 TPL 以及 18Cell 仿真器连接起来,但想要丢弃或不连接 BJB 进行初始设置。 由于RD-HVBMSCT800BUN Read S32CT型号已经配置了电池接线盒。 1. 在配置中需要做些什么才能移除电池接线盒? 如果我没有连接电池接线盒,尝试打开CMU和S32K348的电源,由于BJB没有连接,代码是否会闪烁而没有任何错误? 此致, 湿婆 回复:S32K348 HVBMS 800 - 无BJB MBDT代码生成和闪存 谢谢。我们成功地完成了上述工作并且设置运行良好。当我尝试监控单个电池串的最小电压和最大电压时,我又对 CAN 上电池电压的奇怪行为产生了疑问。请帮助解决下面的问题。 https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/Solver-settings-in-Matlab-HVBMSSCTBUN/td-p/1995183 回复:S32K348 HVBMS 800 - 无BJB MBDT代码生成和闪存 有人可以对此作出回应吗?
View full article
SC18IS606 将字节的每个 7e 位置 1 大家好, 我正在尝试将 SC18IS606 与 BGT60UTR 组合使用。写入寄存器似乎有效。但是当我尝试读回寄存器值时。SC18IS606 在字节的每个 7e 位中放置一个 1。在逻辑分析仪上我看到了正确的值。但阅读它们似乎不能正常进行。 我希望有人能帮忙。 此致
View full article
SC18IS606 puts 1 in every 7e bit of a byte Hello everyone,  I'm trying to use a SC18IS606 incombination with a BGT60UTR. Writing the registers seems to work. but when i try to read back the register values. the SC18IS606 puts a one in every 7e bit of a byte. On the logic analyzer I see the right values coming by. but reading them seems not to work properly.  I hope somebody can help.  Regards Re: SC18IS606 puts 1 in every 7e bit of a byte Hi guoweisun,  Thanks for your reply, The problem was caused by my raspberry-pi. do not realy understand why but with a different processor the problem was solved.  regards Re: SC18IS606 puts 1 in every 7e bit of a byte HI Danny: Thanks for your interest in NXP  Products. You can see below read command format: You can see above read command for instance. Thanks!
View full article
SC18IS606 は、バイトの 7e ビットごとに 1 を格納します みなさん、こんにちは、 私はBGT60UTRとSC18IS606を組み合わせて使用しようとしています。レジスターの書き込みはうまくいっているようです。しかし、レジスタの値を読み戻そうとすると。このSC18IS606は、バイトの7eビットごとに1を格納します。ロジックアナライザーでは、正しい値が来ていることがわかります。しかし、それらを読むことは正しく機能しないようです。 どなたかお役に立てれば幸いです。 よろしくお願いします。
View full article
Yocto iMX8M Plus boot kernel loop with "eth_lpi not found" iMX8M Plus configured for Yocto on Variscite DART-MX8M-PLUS, booting from eMMC. While starting the kernel it fails to ever finish booting as it loops, printing "IRQ eth_lpi not found" messages over and over. I suspect the issue might be with the device tree but do not know for certain and also do not know how this would be remedied. Boot log is attached. Thank you in advance for any guidance. i.MX 8 Family | i.MX 8QuadMax (8QM) | 8QuadPlus Yocto Project Re: Yocto iMX8M Plus boot kernel loop with "eth_lpi not found" Thanks for the quick reply. In our case we do have both Ethernet devices but one is not being seen. As you say, it’s odd it stops it booting. Shall continue discussions with Variscite support. Thanks again. The device tree link may come in handy. Re: Yocto iMX8M Plus boot kernel loop with "eth_lpi not found" Hi, sorry to leave the post unanswered. I did resolve the issue; Variscite responded to me with the following after I described the issue to them: "The message you are reporting is just an expected harmless warning. You may want to edit the device tree and remove the second ethernet here https://github.com/varigit/linux-imx/blob/lf-6.1.y_var03/arch/arm64/boot/dts/freescale/imx8mp-var-dart-dt8mcustomboard.dts#L172-L198" Upon removing the &eqos and &fec blocks from the device tree, the warning message disappeared. Not sure why this seems to have prevented it from booting. Hopefully this helps. Re: Yocto iMX8M Plus boot kernel loop with "eth_lpi not found" Sorry to pull up an old thread, but did you get a resolution to this? We're in exactly the same situation with exactly the same error messages. We are in touch with Variscite but if you have a quick solution, or even just a pointer, we might get there quicker. Re: Yocto iMX8M Plus boot kernel loop with "eth_lpi not found" Hi @cygnus. If you are a Variscite customer, please register and create a ticket in the Variscite customer portal, and provide more details about the carrier board you are using: https://varisciteportal.axosoft.com/ Thanks, Eran Re: Yocto iMX8M Plus boot kernel loop with "eth_lpi not found" Hello, It could be problem with the connection, but maybe some @variscite could help. regards
View full article
S32K348 HVBMS 800 - BJB MBDTコード生成とフラッシュなし NXPチームの皆様へ 18Cellエミュレータと一緒にTPLでCMUとS32K348 MCだけを接続したいのですが、初期設定のためにBJBを破棄するか、接続しないでほしいです。 RD-HVBMSCT800BUN ReadのS32CTモデルはすでにバッテリージャンクションボックスで構成されているためです。 1.バッテリージャンクションボックスを取り外すための構成で何かすることはありますか? 2.バッテリージャンクションボックスを接続していない場合は、CMUの電源を入れてS32K348してみてください、BJBが接続されていないため、コードはエラーなしで点滅しますか? よろしくお願いします。 シバ 日時:S32K348 HVBMS 800 - BJB MBDTコード生成とフラッシュなし ありがとうございます。上記を行うことができ、セットアップは正常に機能します。CANのセル電圧の奇妙な動作について別の質問があり、これは個々のセルストリングの最小電圧と最大電圧を監視しようとしたときに出てきました。以下のチケットにご協力ください。 https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/Solver-settings-in-Matlab-HVBMSSCTBUN/td-p/1995183 日時:S32K348 HVBMS 800 - BJB MBDTコード生成とフラッシュなし どなたかこれにご回答いただけますか?
View full article
硬件重置或软件重置 您好, 有人可以帮助我启用看门狗计时器并帮助我启动软件重置的步骤吗?我正在使用 S32k14x EAR SDK v0.8.6 编写我的车辆应用程序代码。所以我想启用看门狗计时器,但无法找到任何可以从中获得帮助的知识库。而且我还需要硬件重置和软件重置过程中的帮助。 如果有人能帮助我的话,那将会非常有帮助。提前致谢 #S32K146
View full article