Multi Source Translation Content

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

Multi Source Translation Content

讨论

排序依据:
S32K3 : LPSPI 主站从站传输 你好 S32K3 团队, 我正在使用这个评估板:— https://www.nxp.com/design/design-center/development-boards-and-designs/S32K312EVB-Q172 我做了这样一个 IP 示例:--- LPSPI2作为主站使用 DMA。 该示例使用 LPSPI2 Master 传输 & 使用 DMA 接收十二个字节。 https://community.nxp.com/t5/S32K-Knowledge-Base/Example-S32K312-SPI-Transmit-amp-Receive-Using-DMA-DS3-5-RTD300/ta-p/1787856 现在我想修改这个示例:-- LPSPI-2 (Master)--> LPSPI-1 (SLave) 我修改了以下驱动程序的示例:-- 添加了 lpspi-1 从站的引脚设置 DMA MUX DMA 添加了 LPSPI-1 所附源代码使用 LPSPI_2(主站)发送数据。 -->您能否在>--> LPSPI-1(从站)上添加 接收数据的代码。 主站将发送数据& ,从站将接收同样的数据。 问候, Dinesh RTD Re: S32K3 : LPSPI MASTER slave transfer 嗨,@Dinesh_Guleria、 1. 波特率 = 2kHZ: 我检测到,如果我在下次调用 lif ((Master __callback==1)&&(Slave__ callback==1)) 中添加延迟时间 lpsiP_IP_asyncTransmit (),那么问题就会得到解决。 之后,我添加了一些检查语句,如下所示,而不是使用延迟时间,你的项目成功了。我附上了项目。 2. 波特率较高,正如我跟你说过的:在你的项目中不能使用较高的波特率,因为在使用带有 DMA 的 LPSPI1 和 2 时,这是硬件限制。 顺祝商祺! 丹 Re: S32K3 : LPSPI MASTER slave transfer 嗨,@Dinesh_Guleria、 如果波特率较高,我建议您可以为通道 DMA_IP_HW_CH_2 和 3(LPSPI1 - 从站)配置 DMA_IP_LEVEL_PRIO1;为通道 DMA_IP_HW_CH_0 和 1(LPSPI2 - 主站)配置 DMA_IP_LEVEL_PRIO0。然后,为所有 Dma 通道启用"Enable Preemption" 。 顺祝商祺! 丹 Re: S32K3 : LPSPI MASTER slave transfer 我将 HSE 时钟改为 --> 60 MHZ 然后我更改了这个值,错误消除了:---- 通过 LPSPI 接收到的数据 :-- 但您的示例代码只适用于 SPI 波特率 --> 20000 对于 --> 1 MHZ spi 波特率不起作用。 问候, Dinesh Re: S32K3 : LPSPI MASTER slave transfer 你好@DanNguyenDuy, 我测试了你的项目,是的,我能够接收从主站发送到从站的数据。 由于APIS_SLOW_CLK与 HSE_CLK 的比率(1/2 或 1/4),我将 HSE 时钟改为 60 MHZ :-- 我开始在 LPSPI 中遇到错误:--- 在我的项目中,我使用 --> LPSPI_2、LPSPI_1 将 HSE 时钟更改为 --> 60 MHZ .在 LPSPI 中出现以下错误 -->在您的项目中 请您测试一下,为什么 S32DS 会出现这种情况......? 请说明为什么会出现这个错误? 问候, Dinesh Re: S32K3 : LPSPI MASTER slave transfer 嗨,@Dinesh_Guleria、 您是否在 DMA_IP_HW_CH_2 和 DMA_IP_HW_CH_3 中启用了"Enable Preemption" ? 请确保您的连接正确无误,如附图所示。 我在 S32DS 和 Trace32 调试器上都进行了测试,结果都通过了;但我发现 Trace32 调试器比 S32DS 调试器更稳定。因此,我建议您使用 T32 调试器,而不是 S32DS 调试器。 如果没有 Trace32 调试器,可以尝试在 S32DS 3.6 调试器版本上重新调试,而不是 3.5 调试器版本。 顺祝商祺! 丹 Re: S32K3 : LPSPI MASTER slave transfer 嗨,丹, 很抱歉这么晚才回复,我上周休假了。 请使用PE Micro 调试器进行检查。 我测试了你的代码我在两块板上测试过。 我甚至更换了新电线。 我重新确认了我的连接,使用的引脚是一样的 :--- 代码卡在这里...... :-- 我移除了在 Power On 主板上测试过的调试器 &。 发光二极管从不发光,代码如下:--- 但您的代码在我这里不起作用 , Dinesh Re: S32K3 : LPSPI MASTER slave transfer 嗨,@Dinesh_Guleria、 我用上述连接调试了您的项目,测试通过了。 我还在 DMA_IP_HW_CH_2 和 DMA_IP_HW_CH_3 中启用了"启用抢占" 顺祝商祺! 丹 Re: S32K3 : LPSPI MASTER slave transfer 嗨,@Dinesh_Guleria、 根据你的图像,看起来你在 S32K312EVB 板上连接了错误的引脚。 您能再检查一下您的连接吗? lpspi2_sout - ptb3: j412.20<--> lpspi1_sin - pta20: j38.4 lpspi2_sin - ptb2: j412.11<--> lpspi1_sout - pta18: j3.8 lpspi2_sck - ptb29: j412.8<--> lpspi1_sck - pta19: j38.1 lpspi2_pcs0 - ptb25: j3.6<--> lpspi1_pcs0 - pta11: j4.2 顺祝商祺! 丹 Re: S32K3 : LPSPI MASTER slave transfer 我修改了代码 :-- 启用了这些中断 :-- 已添加回调处理程序,用于主站传输,回调命中:--- 但从属回调永远不会被点击& ,因为从属端没有收到数据。 请查看我更新的代码。 问候, Dinesh Re: S32K3 : LPSPI MASTER slave transfer 你好 RTD 团队, 我在参考示例中修改了示例代码 —--> > Lpspi_Flexio_Ip_Transfer_S32K344 我用这种方式连接引脚:-- 主站(LPSPI-2) 从站(LPSPI-1) MOSI - PTB-3(紫色)<-----------> SIN - PTA20 MISO - PTB-2 (White)<-----------> SOUT - PTA18 SCLK - PTB-29(蓝色)<-----------> SCLK - PTA19 CS-0 - PTB-25 (Black)<-----------> CS-0 - PTA11 船上连接:-- 从属程序从未收到任何数据& 代码卡在这里 :-- 请说明代码中缺少了什么? 问候, DInesh
查看全文
The difference between TJA1443T/1J and TJA1443AT The difference between TJA1443T/1J and TJA1443AT Re: The difference between TJA1443T/1J and TJA1443AT I only found the following two orderable parts: TJA1443AT/0Z TJA1443ATK/0Z TJA1443T/1J Where did you see this?
查看全文
ethtool selftest over IMX93 EQOS ethernet port support Hi, Running Mickledore (Yocto) imx-image-core on an IMX.93 I have the EQOS ethernet port configured and connected its external PHY. Putting the external phy in loopback mode causes the link to come up. Want to run the ethtool -t (selftest) on this interface?           ethtool -t eth0           Cannot test: Operation not supported I can see that the driver seems to support self test drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c Any help getting ethtool to do this would be appreciated? Thanks Ken Re: ethtool selftest over IMX93 EQOS ethernet port support Hi, Thank you for your interest in NXP Semiconductor products, What section were you interested in testing? Is something failing? And what is the PHY your setup is using?  Regards
查看全文
MINISASTOCSI with 8MMINILPD4 LF_v6.1.22 vs. LF_6.12.34 Linux I have the MINISASTOCSI camera module working with the older factory build for the 8MMINILPD4-EVK: LF_v6.1.22-2.0.0_images_IMX8MMEVK Using the following command successfully streams video from the camera through to the HDMI monitor on the mini-SAS-to-HDMI output: gst-launch-1.0 v4l2src ! video/x-raw,width=1920,height=1080 ! autovideosink I flashed the later version of FW, in this example the latest: LF_v6.12.34-2.1.0_images_IMX8MMEVK G-Streamer does not work: root@imx8mmevk:~# gst-launch-1.0 v4l2src ! video/x-raw,width=1920,height=1080 ! autovideosink Setting pipeline to PAUSED ... ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Device '/dev/video0' is not a capture device. Additional debug info: /usr/src/debug/gstreamer1.0-plugins-good/1.26.0.imx/sys/v4l2/v4l2_calls.c(644): gst_v4l2_open (): /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Capabilities: 0x4204000 ERROR: pipeline doesn't want to preroll. Failed to set pipeline to PAUSED. Setting pipeline to NULL ... Freeing pipeline ... root@imx8mmevk:~# ...So I used found the device with v4l2: root@imx8mmevk:~# v4l2-ctl --list-devices imx-capture (platform:32e20000.csi): /dev/video2 /dev/media0 vsi_v4l2dec (platform:vsi_v4l2dec): /dev/video1 vsi_v4l2enc (platform:vsi_v4l2enc): /dev/video0 root@imx8mmevk:~# ...so then tried again with the device: root@imx8mmevk:~# gst-launch-1.0 v4l2src device=/dev/video2 ! video/x-raw,width=1920,height=1080 ! autovideosink Setting pipeline to PAUSED ... Pipeline is live and does not need PREROLL ... Pipeline is PREROLLED ... Setting pipeline to PLAYING ... New clock: GstSystemClock ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Failed to allocate required memory. Additional debug info: /usr/src/debug/gstreamer1.0-plugins-good/1.26.0.imx/sys/v4l2/gstv4l2src.c(957): gst_v4l2src_decide_allocation (): /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Buffer pool activation failed Execution ended after 0:00:00.014162191 ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Internal data stream error. Setting pipeline to NULL ... Additional debug info: /usr/src/debug/gstreamer1.0/1.26.0.imx/libs/gst/base/gstbasesrc.c(3187): gst_base_src_loop (): /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: streaming stopped, reason not-negotiated (-4) Freeing pipeline ... root@imx8mmevk:~#   So now my question is what changed in the BSP after LF_v6.1.22... which now cannot get the buffer memory allocated? Is the issue within v4l2 or in G-streamer or is it in the driver for MINISASTOCSI? It would be really really nice to have updated documentation for MINISASTOCSI as well. Re: MINISASTOCSI with 8MMINILPD4 LF_v6.1.22 vs. LF_6.12.34 Linux This is the list of supported (supposedly) formats: root@imx8mmevk:~# v4l2-ctl --device=/dev/video2 --list-formats-ext ioctl: VIDIOC_ENUM_FMT Type: Video Capture [0]: 'UYVY' (UYVY 4:2:2) Size: Continuous 4x1 - 65532x65535 [1]: 'YUYV' (YUYV 4:2:2) Size: Continuous 4x1 - 65532x65535 [2]: 'BA81' (8-bit Bayer BGBG/GRGR) Size: Continuous 8x1 - 65528x65535 [3]: 'GBRG' (8-bit Bayer GBGB/RGRG) Size: Continuous 8x1 - 65528x65535 [4]: 'GRBG' (8-bit Bayer GRGR/BGBG) Size: Continuous 8x1 - 65528x65535 [5]: 'RGGB' (8-bit Bayer RGRG/GBGB) Size: Continuous 8x1 - 65528x65535 [6]: 'BG10' (10-bit Bayer BGBG/GRGR) Size: Continuous 4x1 - 65532x65535 [7]: 'GB10' (10-bit Bayer GBGB/RGRG) Size: Continuous 4x1 - 65532x65535 [8]: 'BA10' (10-bit Bayer GRGR/BGBG) Size: Continuous 4x1 - 65532x65535 [9]: 'RG10' (10-bit Bayer RGRG/GBGB) Size: Continuous 4x1 - 65532x65535 [10]: 'BG12' (12-bit Bayer BGBG/GRGR) Size: Continuous 4x1 - 65532x65535 [11]: 'GB12' (12-bit Bayer GBGB/RGRG) Size: Continuous 4x1 - 65532x65535 [12]: 'BA12' (12-bit Bayer GRGR/BGBG) Size: Continuous 4x1 - 65532x65535 [13]: 'RG12' (12-bit Bayer RGRG/GBGB) Size: Continuous 4x1 - 65532x65535 [14]: 'BG14' (14-bit Bayer BGBG/GRGR) Size: Continuous 4x1 - 65532x65535 [15]: 'GB14' (14-bit Bayer GBGB/RGRG) Size: Continuous 4x1 - 65532x65535 [16]: 'GR14' (14-bit Bayer GRGR/BGBG) Size: Continuous 4x1 - 65532x65535 [17]: 'RG14' (14-bit Bayer RGRG/GBGB) Size: Continuous 4x1 - 65532x65535 [18]: 'GREY' (8-bit Greyscale) Size: Continuous 8x1 - 65528x65535 [19]: 'Y10 ' (10-bit Greyscale) Size: Continuous 4x1 - 65532x65535 [20]: 'Y12 ' (12-bit Greyscale) Size: Continuous 4x1 - 65532x65535 [21]: 'Y14 ' (14-bit Greyscale) Size: Continuous 4x1 - 65532x65535 root@imx8mmevk:~# And trying the suggested command still fails with the same error message: root@imx8mmevk:~# gst-launch-1.0 v4l2src device=/dev/video2 ! video/x-raw,format=UYVY,width=1920,height=1080 ! autovideosink Setting pipeline to PAUSED ... Pipeline is live and does not need PREROLL ... Pipeline is PREROLLED ... Setting pipeline to PLAYING ... New clock: GstSystemClock ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Failed to allocate required memory. Additional debug info: /usr/src/debug/gstreamer1.0-plugins-good/1.26.0.imx/sys/v4l2/gstv4l2src.c(957): gst_v4l2src_decide_allocation (): /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Buffer pool activation failed ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Internal data stream error. Additional debug info: /usr/src/debug/gstreamer1.0/1.26.0.imx/libs/gst/base/gstbasesrc.c(3187): gst_base_src_loop (): /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: streaming stopped, reason not-negotiated (-4) Execution ended after 0:00:00.017086875 Setting pipeline to NULL ... Freeing pipeline ... root@imx8mmevk:~# Still seems to me that a bug was introduced into the build somewhere between 6.1.22 and 6.12.xx and given that g-streamer probably has not changed at all I would think the issue is with the NXP driver for the camera module or perhaps for the i.MX8MM hardware... Re: MINISASTOCSI with 8MMINILPD4 LF_v6.1.22 vs. LF_6.12.34 Linux Helo @Jordanyte  I hope you are doing very well. Could you please set the below command: v4l2-ctl --device=/dev/video2 --list-formats-ext This will show the supported formats by camera. Also, try the below: gst-launch-1.0 v4l2src device=/dev/video2 ! video/x-raw,format=UYVY,width=1920,height=1080 ! autovideosink (Thinking the UYVY is the supported format). Best regards, Salas. Re: MINISASTOCSI with 8MMINILPD4 LF_v6.1.22 vs. LF_6.12.34 Linux Hello @Jordanyte  and @Manuel_Salas , I am running into the same issue with my IMX8MM and MINISASTOCSI. Getting the same errors in 6.12.34. Were you able to find a solution to this problem? If so, do you mind sharing? Thanks in advance, Kasey
查看全文
IMX RT 1180 Hello, i've some evk 1180, i've few problem with some pc to connect the target, in some pc (2) there is no way to connect evk for debugging, it finds MCU Link, but "0 available swd devices detected with MCUxpresso IDE" happen.. the same boards works to other pc. the Version used is 25.x pls help me to fix this problem on this pc ( we have also tried to use virtual machine on this pc but the problem is the same, also unistall and re-install all packages) Thanks! Re: IMX RT 1180 Goodmorning Diego, we have just tried to program debugger as Segger and works but our target is using like CMSIS Link debug. I've an update maybe to understand the behaviour,we use an SVN server to share the code in the team, we share oonly the project folder, the metadata and not the debug folder, for me and for other user(we have just adnn a now colleague yesterday, as i said, all works good) for other two not we have the problem above. BUT the weird comes here: if i export the project via zip(project and reference form mcuxpresso function) with no debug folder nothig works as like SVN, BUT if i export the project and reference with debug folder all works also on a William pc. the other weird behaviour is when not works if i jump to a works peoject i need to reset the debugger, is looks like stuck... Re: IMX RT 1180  Hi @William_Weg  thank you for your update! I was able to update FW on my side I placed  a jumper on JP3 and power cycled the whole EVK.    I am using this schematic revison:    What is the schematic revision that you are using? Does update also fails with CMSIS DAP? Thank you,  Diego Re: IMX RT 1180 Link flash with GUI is correctly connected  Re: IMX RT 1180 Hi Diego,  I'm sorry but in any case doesn't work. jp3 is close for isp mode Re: IMX RT 1180 Hi @SimoneColomboWEG  Thank you for your update and report!  ( @William_Weg  please use similar path for finding the JLink FW on Linkserver 25.9 :  C:\nxp\LinkServer_25.9.134\MCU-LINK_installer\scripts ) After first log in, I could install the version 25.9, So unfortunatelly I could not replicate the issue! but, I suggest to install Linkserver package  directly from  this page https://www.nxp.com/design/design-center/software/development-software/mcuxpresso-software-and-tools-/linkserver-for-microcontrollers:LINKERSERVER Please let me know your results, guys Diego Re: IMX RT 1180 Hi @William_Weg  Please refer to the below image! Diego Re: IMX RT 1180 FYI we are trying to install 25.9 but on all pc we have this issue after first login ask: [info] Downloading file https://www.nxp.com/lgfiles/updates/mcuxpresso/JLink_Windows_V872_x86_64.exe using axios [info] Installing SEGGER J-Link (8.72)... [info] Executing and elevating command "C:\Users\colombos\AppData\Local\Programs\MCUXpressoInstaller\.cache\JLink_Windows_V872_x86_64.exe -Silent=1 -InstUSBDriver=1" [info] Checking hash for file C:\Users\colombos\AppData\Local\Programs\MCUXpressoInstaller\.cache\debug_common-25.09.tar... [info] Downloading Additional NXP debugger support from https://www.nxp.com/lgfiles/updates/mcuxpresso/debug_common-25.09.tar [info] Downloading file https://www.nxp.com/lgfiles/updates/mcuxpresso/debug_common-25.09.tar using axios [info] Installing Additional NXP debugger support (25.09)... [info] Extracting debug_common-25.09.tar to C:\Users\colombos\.mcuxpressotools/debug_common-25.09 [info] Checking hash for file C:\Users\colombos\AppData\Local\Programs\MCUXpressoInstaller\.cache\LinkServer_25.9.134.exe... [info] Downloading LinkServer from https://www.nxp.com/lgfiles/updates/mcuxpresso/LinkServer_25.9.134.exe [info] Downloading file https://www.nxp.com/lgfiles/updates/mcuxpresso/LinkServer_25.9.134.exe using axios [info] Installing LinkServer (25.9)... [info] Executing and elevating command "C:\Users\colombos\AppData\Local\Programs\MCUXpressoInstaller\.cache\LinkServer_25.9.134.exe /VERYSILENT /SUPPRESSMSGBOXES" [info] Checking hash for file C:\Users\colombos\AppData\Local\Programs\MCUXpressoInstaller\.cache\MCUXpresso_Config_Tools_v25.09_x64.exe... [error] Error occurred while installing MCUXpresso Configuration Tools: self signed certificate in certificate chain. Skipping... *** Installation error *** Re: IMX RT 1180 Hi, I a Simone's collegue I have this problem in my pc and I Installed last version of LinkServer, on-board LPC55 but nothing changes. I want understand where i can find il JlinkFW mentioned in "try testing with JLink FW", thaks Re: IMX RT 1180 Thanks Diego, all pc with this problem is winodws 11 pro 24H2 build 26100.6584 the same as mine (that works). we have just tried to download the latest link server, the Lpc55 onboard is the latest version. as i said i can use (with another collegue) the boards with no problem, it runs correctly but the other two collegue there is no way to works! what i can do?  FYI i'm working on a 24.x skd version (because i can't update for TSN support) and works correctly also with this version. Re: IMX RT 1180 Hi @SimoneColomboWEG  Please try to install the latest version of the Linkserver on that machine. Lets see if installing the drivers makes a difference. What is your OS? Do all the machines have the same OS and version?  Also, try to  update the on-board LPC55 to run the latest version of CMSIS DAP. If this does not make any change at all, try testing with JLink FW. Let me know if you need more steps for this! Diego
查看全文
S32DS 3.4 を SDKs 付きで新規インストールします。一部のペリフェラルが欠落しています。 こんにちは、皆さん。 S32DS 3.4 を新規インストールしました。その後アップデートして「S32K1xx 開発パッケージ」と「S32SDK S32K1XX RTM 4.0.3」をインストールしました。現在、 Gpio_DioやIntCtrl_Ipなどのペリフェラルがいくつか不足しています。これを修正するにはどうすればいいでしょうか?インストールされているコンポーネントと利用可能なペリフェラルについては以下を参照してください。 Re: Fresh install S32DS 3.4 with SDK; some peripherals are missing 私もあなたと同じドライバを入手しました。Gpio_Dio および IntCtrl_Ip ドライバを使用せずに GPIO および割り込み機能がどのように処理されるかを確認するには、S32SDK S32K1XX RTM 4.0.3 サンプル プロジェクトを参照してください。 Re: Fresh install S32DS 3.4 with SDK; some peripherals are missing こんにちは、レオ。 SO私の質問は SDK RTM 4.0.3 に関するもので、答えは RTD 4.4 を使用することです。 私のプロジェクトでは、RTD 4.4 ドライバを使用すると SDK RTM 4.0.3 に比べてサイズが 30% 増加し、ファームウェアがマイクロコントローラ (S32K116) にほとんど収まらなくなり、製品に変更を加えたり機能を追加したりするときに問題が発生するため、RTD 4.4 ドライバは使用できません。SO、ありがとうございます。ただし、RTD 4.4 は選択できません。 Re: Fresh install S32DS 3.4 with SDK; some peripherals are missing 当社製品にご興味をお持ちいただき、また当社コミュニティに貢献していただき、ありがとうございます。 S32K1xx シリーズを使用した開発では、最新の S32DS および RTD バージョンを使用することをお勧めします。 • S32 Design Studio 3.6.4 – Windows/Linux • S32K1_S32M24X リアルタイム・ドライバ AUTOSAR R21-11 バージョン 3.0.0 IDEsをダウンロードするには、 S32プラットフォーム用のS32 Design Studioページにアクセスしてください-> ダウンロード -> S32 Design Studio 3.6.4 – Windows/Linux RTD をダウンロードするには、 S32K1ページ-> デザイン リソース -> ソフトウェア -> S32K1 用リアルタイム・ドライバ -> オートモーティブ SW - S32K1_S32M24x - Cortex-M 用リアルタイム・ドライバにアクセスしてください。 各SWへのインストールフロー/詳細についてはリリースノートをご確認ください。 SW をインストールしたら、すべての RTD の例を参照できます。 この情報が役に立つことを願います。リアルタイム・ドライバ (RTD) の使用に関してさらに質問がある場合は、お気軽にお問い合わせください。
查看全文
EB tresos 负载失败 HI 我正在关注 AN13750 文档为 s32g3 构建 ipcf 代码包。在 EB tresos.我已经复制了 RTD eclypse 插件,导入了集成引用示例并加载了 ecuc。但 ecuc 下仍然没有出现任何文件。 并在尝试加载配置后得到以下信息。       Re: EB tresos load fail 谢谢 @chenyin_h 我已经使用兼容版本的 Platform_Software_Integration 代码包修复了这个问题。 Re: EB tresos load fail 你好,@Niranj_369 感谢您的回复。 AN13750 以 S32G2 为基础,该方法也适用于 S32G3,但由于硬件/软件版本不同,它与 S32G3 并不完全兼容。 如果你正在使用 Platform_Software_Integration_S32G3_2023_02,则必须提前安装 " Platform_Software_Integration_S32G3_2023_02 " 版本说明中列出的代码包(可能与 AN13750 中提到的不一样),然后尝试按照 AN13750 的描述将引导加载程序项目加载到 E B。 很抱歉给您带来不便。 BR 切宁 Re: EB tresos load fail 谢谢@chenyin_h 我使用的是 Platform_Software_Integration_S32G3_2023_02。 注:我使用的是 s32g3 SOC。 该文件适用于 s32g2。我希望它能与 s32g3 兼容。 Re: EB tresos load fail 你好,@Niranj_369 谢谢您的帖子。 我能知道为 S32G3 选择了哪个版本 "集成参考示例" 吗? BR 切宁
查看全文
MIMX8MLCVNKZAB (I.MX8) 皆さん、 私はMIMX8ML8CVNKZABを使用しています。このチップの目的は、独自のオペレーティング システム (OS) を実行することです。組み込みツール (MCUexpresso、DDR など) を使用した後、ブートでいくつかの問題が発生しました。それらはすべて Linux であることに気付きました。これでは私の目的が達成されません。U-boot は Linux と複雑に絡み合っており、カスタム ボードに実装するのが難しいため、詳細を追加すると、現在は自分でチップをブートしています。ブート イメージでつまずいてしまいました。NXP は Linux 専用ですか?チップ上で何が実行されるかは関係ないことはわかっていますが、すべてのドキュメントは Linux ベースであり、IVT 用のバイナリの作成などの例を回避する作業はほとんどないようです... 誰か助けてくれたり、使用できるリソースを知っていたりしませんか? Re: MIMX8MLCVNKZAB (I.MX8) こんにちは、 カスタム OS 環境で作業しており、Linux/Android や U-boot などのサポートされている OS は使用していないため、このタイプの実装に関する公式ドキュメントやテクニカル サポートは提供されていません。 残念ながら、これはこのサポート チャネルの範囲外であるため、直接サポートを提供することはできません。ご理解のほどよろしくお願い申し上げます。ご質問がございましたらいつでもお問い合わせください。 よろしくお願いいたします。
查看全文
在 MATLAB Simulink 中,如何在 MBDT 中的 S32k358 上设置多核? 在 MBDT 中,如何在 S32K358 上设置多核?是否有任何示例说明如何使用多核? @robertv Re: In MATLAB Simulink, How to setup multicore on S32k358 in MBDT? 你好,@Wei_H、 感谢您对 S32K3 基于模型的设计工具箱的关注。 目前,S32K3 工具箱还没有支持或示例来演示多核功能。我们目前正在评估在未来的版本中引入此类支持。 感谢您的理解。 顺祝商祺! 德拉古
查看全文
由于硬件集成层 VSP2 导致 Qtwayland 故障-imx8QXP 您好,NXP团队: " VSP2 硬件层集成 "   Qt Wayland 合成器层插件: VSP2 硬件层集成... 否 | | | 错误:Qt Gui 在版本时没有 “wayland” 功能。构建 Qt Wayland 客户端需要此功能。 | | 在 /mnt/yocto_builds/lynx_qt_6_8_3/build-Wayland/tmp/work/armv8a-poky-linux/qtwayland/6.8.3/recipe-sysroot/usr/lib/cmake/qt6/qtbuildinformation.cmake.cmake: 220 | | | -- 配置不完整,出现错误! | 警告:Shell 命令的退出代码为 1。 我们正试图在 yocto[ Nanbield] 中将 Qt6.5.3 移植到 Qt6.8.3,因此 qtwayland 因上述 ImX8qxp 而失败。   Re: Qtwayland failure due to hardware Integration Layer VSP2 - iMX8qxp 你好 恩智浦的最新 yocto 软件已将 Qt 升级到 6.5.0。你必须等待下一个版本。 此致
查看全文
S32G-VNP-RDB3 IPCF communication Error I am working on Goldbox S32G-VNP-RDB3 I am using Linux BSP 40 downloaded from the software center and using the following version of IPCF, RTD and FreeRTOS NXP RTD 4.0.2_P04 D2312 NXP RTOS 0.4.0 D2309 FreeRTOS 4.0.2 D2306 NXP Linux BSP40 D2403 And used the following commands # 1. Disable data cache => dcache off # 2. Clear IPCF shared memory => mw.q 0x34100000 0x0 0x40000 # 3. Load M7 binary from SD card into temporary DDR => fatload mmc 0:1 0x80000000 IPCF_FreeRTOS_S32G399A_M7_0.bin # 4. Copy firmware to M7 SRAM => cp.b 0x80000000 0x34300000 0x300000 # 5. Start M7 core at vector address => startm7 0x34500400 # 6. Boot Linux normally (if not already) => boot # 1. Mount boot partition (optional, verify M7 binary) mkdir -p /mnt/s32g_boot mount /dev/mmcblk0p1 /mnt/s32g_boot ls /mnt/s32g_boot # Should see: IPCF_FreeRTOS_S32G399A_M7_0_1_2.bin # 2. Load IPCF Linux kernel modules insmod /lib/modules/$(uname -r)/extra/ipc-shm-dev.ko insmod /lib/modules/$(uname -r)/extra/ipc-shm-sample.ko # 3. Verify modules lsmod | grep ipc # 4. Clear previous ping (optional) echo 0 > /sys/kernel/ipc-shm-sample/ping # 5. Test IPCF communication (channel 0) echo 10 > /sys/kernel/ipc-shm-sample/ping # 6. Monitor kernel messages dmesg | tail -20 | grep -i ipc But getting an error of root@s32g399ardb3:~# dmesg | tail -20 | grep -i ipc [ 81.689010] ipc-shm-sample: starting demo... [ 81.689029] ipc-shm-sample: ch 0 >> 19 bytes: SENDING MESSAGES: 0 [ 91.808767] ipc-shm-sample: starting demo... [ 91.808771] ipc-shm-sample: ch 0 >> 20 bytes: SENDING MESSAGES: 10 [ 91.808778] ipc-shm-sample: send_data_msg(): failed to get buffer for channe2 Please guide which versions of different software and Linux BSP I should use for my board Re: S32G-VNP-RDB3 IPCF communication Error Hello@chenyin_h      Thank you for your continuous support. I tried with the M-core side build for version 4.9.0, along with the Linux BSP 40 downloaded from the NXP software download, and it worked as expected. Re: S32G-VNP-RDB3 IPCF communication Error Hello, @Kulkarni_v  Thanks for your reply. From the information you share, you are using 4.10 on M core side, but using default images in BSP40 on A core side. By default, the IPCF images in BSP40 is not the 4.10 version, so the code on both side does not match. As a result, the following method may solve your issue: 1. Manually build IPCF 4.10 images on BSP40, and use it to communicate with M core side you had built. 2. Another way is to build IPCF4.9 on your M core side, and then use the default images in BSP40 to communicate. You may choose either of the methods provided according to your own requirements. BR Chenyin Re: S32G-VNP-RDB3 IPCF communication Error @chenyin_h  Yes I am using IPCF version 4.10.10 Re: S32G-VNP-RDB3 IPCF communication Error Hello, @Kulkarni_v  Thanks for your reply, I feel sorry that still I do not see the IPCF version you used on M core side, the IPCF version may like the following: Thanks BR Chenyin Re: S32G-VNP-RDB3 IPCF communication Error At M-core side I have used above versions and I am using BSP40 downloaded from software support(https://nxp.flexnetoperations.com/control/frse/download?agree=Accept&element=3993158). I have not built it separately. Re: S32G-VNP-RDB3 IPCF communication Error Hello, @Kulkarni_v  Thanks for your post. 1. Which version IPCF you are using for building the M core binaries? 2. Have you build the IPCF A core side manually or directly using the IPCF modules existed in BSP 40 rootfs? BR Chenyin
查看全文
I2C baurate 配置 大家好 是否有人成功配置了 1 Mhz 的 I2C 频率。我试了很多方法,但输出频率只有 400000 赫兹左右。我使用 S32K344 EVB 板。感谢您的阅读! Re: I2C baurate config 你好@Andrew101、 S32K3XX 参考手册中的表 147 中列出了每个外围设备的最大数据速率。LPI2C 在快速模式下最高支持 400Kbps: 我相信只有在目标模式下才能实现高速模式: 致以最诚挚的问候, Julián
查看全文
Secure Provisioning Tool UART connection failed on custom i.MX RT1176AVMA8 board - Failed to start f Hello NXP team, I am working on a custom board (ST05) that is based on the i.MX RT1176AVMA8 MCU and follows the RT1170 EVK reference design. I am trying to connect and flash the board using the Secure Provisioning Tool (SPT) over UART1, but I am unable to establish a connection. When I click on "Test Connection", I get the following errors: Failed to start flashloader, the processor was not verified. Cannot verify the processor, failed to load unsigned flashloader. Current setup: MCU: i.MX RT1176AVMA8 Board: Custom board based on RT1170 EVK Tool: Secure Provisioning Tool v3.x (latest) Connection: UART1 via USB–TTL adapter Boot Mode: Serial Downloader Mode (boot pins set accordingly) HAB: Not enabled (device is non-secure) OS: Windows 10 What I tried: Tested with both signed and unsigned flashloader options in SPT Verified serial downloader boot mode configuration Confirmed no fuses are programmed yet (HAB disabled) Tried different baud rates and COM ports, same issue Questions: How can I make the Secure Provisioning Tool load an unsigned flashloader when HAB is not yet enabled? Is there a way to bypass the processor verification step for initial UART flashing on a blank RT1176 device? Should I use MCUBootUtility or blhost first to initialize the device before using SPT? Are any fuse or boot configuration settings required to allow unsigned UART flashloader loading? It seems the Secure Provisioning Tool is trying to verify a signed flashloader, but the processor is in a non-secure state (HAB disabled). From other discussions, this looks like a secure boot or provisioning conflict, but I am not sure how to start correctly with a fresh RT1176 device over UART. Please suggest the correct procedure or settings to connect successfully in this scenario. Thank you, Harisha Boot ROM|Booting | Flash Re: Secure Provisioning Tool UART connection failed on custom i.MX RT1176AVMA8 board - Failed to sta Hi Harisha. Secure Provisioning Tool uses flashloader application from MCUXpresso SDK. It is distributed in binary form here:  c:\nxp\MCUX_Provi_25.06\bin\_internal\data\targets\MIMXRT1176\flashloader_cm7.srec There might be needed modifications for you custom board. Use the flashloader example to verify, whether flashloader ir running on your custom board (simply run the flashloader application in the debugger and try to connect from Secure Provisioning Tool via Connection dialog). In case you need any modification, simply re-build the flashloader, override the version in Secure Provisioning Tool. Re: Secure Provisioning Tool UART connection failed on custom i.MX RT1176AVMA8 board - Failed to sta Hi @Harisha , Thank you so much for your interest in our products and for using our community. Please double check the following points: 1: Please use an oscilloscope to check if the chip's power-up sequence is correct. 2:when you use Secure Provisioning Tool (SPT),do you set RT1176 chip as serial downloader mode? 3: Please check the BOOT_CFG[0-11] pins setting. You can refer to MIMXRT1170-EVKB board design. 4:Please check the Tool version "Tool: Secure Provisioning Tool v3.x (latest)", it should be 25.0X version. https://www.nxp.com/design/design-center/software/development-software/mcuxpresso-software-and-tools-/mcuxpresso-secure-provisioning-tool:MCUXPRESSO-SECURE-PROVISIONING Wish it helps you. If you still have question about it, please kindly let me know. Best Regards MayLiu
查看全文
LX2160A 上の Linux で UART2 を有効にする方法は? こんにちは、 LX2160A 上の Linux で UART1 と UARAT2 の両方を有効にしたいと思います。 カーネルバージョン: 5.15.71 dts での構成は問題ないようです。 UART 制御レジスタを確認してください。UART2 が有効になっていません。 ルート@localhost:~# devmem2 0x21d0030 32 0x00000300 ルート@localhost:~# devmem2 0x21c0030 32 0x00000B01 コメントをいただけますか? 本当にありがとう! 趙 Re: How to enable UART2 in Linux on LX2160A? こんにちは、ケン。 ご親切なサポートありがとうございます。 よろしくお願いいたします。 趙 Re: How to enable UART2 in Linux on LX2160A? 親愛なる趙昭さん fsl-lx2160a.dtsi は、2023 年にお客様からのツリー外パッチを通じて追加され、2024 年に当社のブランチにマージされました。現在は完全にサポートされています。 コミット参照: git show 8b4a8708d37c1174f6a8ee0b8c78ad78c89df8e4 Re: How to enable UART2 in Linux on LX2160A? ありがとう、Yiping。 よろしくお願いいたします。 趙 Re: How to enable UART2 in Linux on LX2160A? このパッチを適用した後、lx2160ardb_tfa_defconfig で CONFIG_SERIAL_PROBE_ALL=y を有効にしてください。 この方法は LSDK 21.08 で検証済みです。 Re: How to enable UART2 in Linux on LX2160A? それは理にかなっています。 少なくとも LF-5.15.y では、パッチがすでに u-boot メインラインに統合されていることを確認しました。 Re: How to enable UART2 in Linux on LX2160A? はい、このパッチを u-boot に適用する必要があります。次に、Linux で UART1 と UART2 を確認します。 Re: How to enable UART2 in Linux on LX2160A? こんにちは、イーピンさん 大変助かりました。ありがとうございます。 パッチを確認しましたが、u-boot に関するものでした。 Linux で UART2 を有効にすると、u-boot 内のすべての UARTs がプローブされるようになるということですか? ありがとうございます 趙 Re: How to enable UART2 in Linux on LX2160A? 以下のパッチを試してください https://patchwork.ozlabs.org/project/uboot/cover/[email protected]/ このパッチを適用した後、lx2160ardb_tfa_defconfig で CONFIG_SERIAL_PROBE_ALL=y を有効にします。 Re: How to enable UART2 in Linux on LX2160A? ところで、UART2 を有効にするために UARTCR のレジスタを変更しようとしましたが、まだ機能しません。
查看全文
LS1028A RCW_COMPLETIONR ERR_CODE 0x54 ? 您好, 我目前正在尝试推出一款基于 LS1028ARDB 的定制 LS1028A 板(非常接近)。 我尝试从 SD 卡启动(CFG_RCW_SRC [3:0] = 1000)。ASLEEP 仍处于钳位状态,用我的调试器我能看见 RCW_COMPLETIONR 寄存器显示 "ERR_CODE 0x54"。 LS1028ARM 没有描述 0x54 错误... 但它两次显示 0x53 错误:0h53-ERROR_ALT_I2C_BOOT_NT_SUPPORTED-I2C 启动不支持辅助流 0h53-ERROR_DRIVER_INIT_FAILED-根据初始状态值跳过二级流中的 hal_init ()。 第二个"0h53" 是对 0h54 错误代码的解释吗?如果是,这意味着什么? 对于同一个注册器,LX2160A 文档显示了 0x54:" ERROR_DRIVER_INIT_FAILED-在加载 RCW 时初始化设备驱动程序时出现错误。在读取 RCW 字节 " 之前,先初始化基于 rcw 源的设备驱动程序。因此,错误名称相同,但解释不同... 这个错误是什么意思(对于 LS1028A)? 谢谢! g. Re: LS1028A RCW_COMPLETIONR ERR_CODE 0x54 ? 我正在检查 ERR 代码。 您是否根据 AN12028_QorIQ LS1028A 设计检查表 (第 146 页,图 6)确认了 PORESET_B、HRESET_B、RESET_ REQ _B 和 ASLEEP 序列? S@@ LEEP 仍处于钳位,信号电压是多少,高还是低? 你会将 LS1028A 客户板与 CWTAP 连接吗。 请在 ccs 中运行以下命令: (bin) 9% 删除所有 (bin) 10% config cc cwtap:10.193.20.99//客户 IP 地址 (bin) 11% show cc 0: CodeWarrior TAP (cwtap: 10.193.20.99)CC 软件 ver.{0.0} (bin) 12% ccs::config_chain {ls1028a dap} (bin) 13% display ::ccs::get_config_chain 链条位置 0:LS1028A 链条位置 1:CoreSight ATB 漏斗 连锁位置 2:CoreSight TMC 连锁位置 3:CoreSight TMC 链条位置 4:CoreSight ATB 漏斗 链条位置 5:CoreSight ATB 漏斗 链条位置 6:CoreSight ATB 漏斗 链条位置 7:CoreSight ATB 漏斗 链位置 8:CoreSight CTI 连锁位置 9:CoreSight CTI 链位置 10:Cortex-A5 链式位置 11:Cortex-A5 PMU 链位置 12:Cortex-A72 连锁位置 13:CoreSight CTI 链位置 14:Cortex-A72 PMU 链位置 15:Cortex-A72 ETM 链位置 16:Cortex-A72 链位置 17:CoreSight CTI 链式位置 18:Cortex-A72 PMU 链位置 19:Cortex-A72 ETM 链条位置 20:DAP 链式位置 21:SAP2 (bin) 14% ccs::reset_too_debug 谢谢!
查看全文
NOR フラッシュに UBI を接続すると、U-Boot「ubi0: レイアウト ボリュームが見つかりません」というエラーが発生します。 「私は、256 MiB NOR フラッシュ (GD55B02g2) を搭載した i.MX ベースのボードで U-Boot 2024.04 を使用しています。」 U-Boot はフラッシュとパーティションを正しく検出します。 mtdparts=21e0000.qspi:448k(U-Boot),64k(U-BootEnv),-(ubi パーティション) しかし、U-Boot が UBI パーティションを接続しようとすると失敗します。 SPIFlashから環境をロード中... SF: ページサイズ256バイト、消去サイズ64 KiB、合計256 MiBのGD55B02g2を検出しました *** 警告 - CRC が不正です。デフォルトの環境を使用しています UBI から環境をロードしています... ubi0: mtd3 を接続 ubi0: スキャンが完了しました ubi0 エラー: ubi_read_volume_table: レイアウトボリュームが見つかりませんでした ubi0 エラー: ubi_attach_mtd_dev: mtd3 の接続に失敗しました、エラー -22 UBIエラー: mtd3をアタッチできません UBI エラー: UBI を初期化できません、エラー -22 UBI初期化エラー22 正しい MTD パーティションが使用されているかどうか (サイズが十分大きいか) を確認してください。 ** mtdパーティション「ubi-partition」が見つかりません mtdparts と mtd list はパーティションが有効であることを示します。 sf プローブは正常に動作します。 U-Boot が正常に接続できるように、この ubi パーティションを適切に初期化またはフォーマットするにはどうすればよいですか? => mtdパーツ デバイス nor0 <21e0000.qspi>、部品数 = 3 #: 名前 サイズ オフセット mask_flags 0: U-Boot 0x00070000 0x00000000 0 1: U-BootEnv 0x00010000 0x00070000 0 2: ubiパーティション 0x0ff80000 0x00080000 0 アクティブパーティション: nor0,0 - (U-Boot) 0x00070000 @ 0x00000000 デフォルト: mtdids: nor0=21e0000.qspi mtdparts: mtdparts=21e0000.qspi:448k(U-Boot),64k(U-BootEnv),-(ubi-partition) => mtdリスト MTD デバイスのリスト: * ノル0 - デバイス: flash@0 - 親: spi@21e0000 - ドライバ: jedec_spi_nor - パス: /soc/bus@2100000/spi@21e0000/flash@0 - タイプ: NORフラッシュ - ブロックサイズ: 0x10000 バイト - 最小I/O: 0x1バイト - 0x000000000000-0x000010000000 : "nor0" - 0x000000000000-0x000000070000 : 「U-Boot」 - 0x000000070000-0x000000080000 : 「U-BootEnv」 - 0x000000080000-0x000010000000 : 「ubiパーティション」 次を使用して、U-Boot で UBI パーティションをアタッチしてみました。 => sfプローブ => ubi パート ubi パーティション U-Boot が UBI デバイスを正常に接続し、利用可能なボリュームを一覧表示することを期待していました。 しかし、次の理由で失敗しました: ubi0 エラー: ubi_read_volume_table: レイアウトボリュームが見つかりませんでした ubi0 エラー: ubi_attach_mtd_dev: mtd3 の接続に失敗しました、エラー -22 また、パーティション レイアウトが正しいことと、フラッシュが適切に検出されたことを確認するために、mtdparts と mtd list も実行しました。これで有効な UBI パーティションが確認されると思っていましたが、有効な UBI ヘッダーがまだないようです。 Re: U-Boot "ubi0: the layout volume was not found" error when attaching UBI on NOR flash. こんにちは@LoKi 返信が遅くなり申し訳ありません。まずは ubi パーティションをフォーマットして、有効な UBI パーティションにする必要があります。 BR
查看全文
SDKをダウンロードできません こんにちは。先週の金曜日にこの問題が発生しました。具体的には、このウェブサイトのDashboard | MCUXpresso SDKビルドツールを使ってSDKを設定・ビルドした後、「ダウンロード」をクリックするとソフトウェアの利用規約が表示されます。「同意する」をクリックすると利用規約ページは閉じますが、ダウンロードが開始されません。ブラウザやデバイスを変えたり、アカウントを変更したりしてみましたが、状況は同じです。 評価ボード Re: sdk无法下载 どういたしまして。ご質問等ございましたら、いつでもお気軽にお問い合わせください。 Re: sdk无法下载 ありがとうございます。以前は中国語のインターフェースを使用していましたが、英語に切り替えても問題ありません。 Re: sdk无法下载 こんにちは@xxxxyyy 、 ご投稿ありがとうございます。試してみたところ、正常にダウンロードできました。 弊社の英語ウェブサイトを再度お試しください: ダッシュボード | MCUXpresso SDK ビルダー BRs セレステ
查看全文
XGATEのさらなるフラストレーション MC9S12XEP100、Code Warrior、再配置可能なアセンブラ。 既存のプログラムを使用して XGATE で割り込みを処理できるようにするために、私は継続的に努力しており、この作業に役立つ短いテスト プログラムをいくつか作成しました。最近また壁にぶつかってしまいました。動作するテストプログラムがあります。定期的な割り込みタイマーを使用して、ECT Ch0 入力キャプチャに 20 ミリ秒の矩形波信号を生成します。現時点では、入力キャプチャが行うことは変数を増分することだけです。PIT ISR と ECT ISR はどちらも XGATE を使用しており、問題なく動作します。 私の最新のプログラムでは、信号を生成するために PIT と XGATE を使用する代わりに、CPU で RTI を使用しています。プログラムのこの部分は設計どおりに動作しますが、XGATE の ECT ISR に入ることがCANません。私はこの問題の解決に多くの時間を費やしましたが、何が間違っているのかがCANません。助けを求める時間です。 もし誰かが私のプログラムを見て、提案をしていただける時間があれば、本当にありがたいです。 よろしくお願いいたします。 ロバート Re: More XGATE frustration こんにちは、 私は許容範囲を超えて長い間これに格闘していたSO、ポート B を ECT Ch0 IC 機能にコネクテッドする独自のプロジェクトを作成しました。 (間違ったマルチリンク ケーブルで 2 日間を費やしました...隠れたランダムな動作の問題を見つけるのはイライラしました) 割り込みに入ることができました。コードは非常にシンプルです。SO、「10 個の違いを見つける」というゲームができました :)。あなたが私よりも成功することを祈ります。ただし、実行を開始した後はコードをチェックしていません。おそらく、次の提案でも実行されるでしょう。さらに、ECT Ch0 (立ち上がりエッジ検出) にプルダウンを設定しました。 しかし!!!! 1 つの大きな問題は (通常はフラッシュ内の XGATE を使用していたため忘れてしまいました)、XGATE の RAM の使用 CAN です。XGATE が初期化されコピーされる前にブレークポイントを設定した場合、それがどこにあるのかはどうなるのでしょうか? 提案...XGATE のセットアップが完了し、コードがコピーされた後、CPU のどこかにブレークポイントを設定します。コードがこのブレークポイントで停止したら、XGATE ウィンドウで別のブレークポイントを設定CAN。 もう 1 つの方法は、コードを実行し、一時的に停止してから、XGATE コードにブレークポイントを設定することです。 よろしくお願いいたします。 ラディスラフ
查看全文
AFT05MP075Nの222MHzでのインピーダンスが必要 私はインピーダンスを探しています 222MHzのAFT05MP075N。 仮想テスト Re: Need impedance for AFT05MP075N at 222mhz こんにちは 申し訳ございませんが、AFT05MP075N の222MHZ特性データはありません。インピーダンス測定プロセス全体は、対象となる周波数ごとに繰り返す必要があるため、多少手間がかかり、時間がかかります。特性評価に許可される周波数範囲は、回路が調整される範囲であることに注意してください。他の周波数の場合、追加のテスト回路を設計および構築する必要があります。そのため、異なる周波数、異なる電力レベル、または異なる動作電圧などの特殊な動作条件でのインピーダンス データを半導体メーカーから入手することが難しい場合があります。
查看全文
gui guider 1.10.0图表错误 在Guiguider的图表元器件中,我想通过将垂直线设置为0来消除垂直线,但最小值只能设置为2。而且你的 guiguider 文档表示支持设置为 0,这是 guiguider 中的软件错误吗? Re: gui guider 1.10.0 chart bug 你好@MC_xiong_ge 感谢您提供的信息。 我可以重现您提到的问题。 BR 哈利 Re: gui guider 1.10.0 chart bug 我又试了一次,这个 bug 确实出现在 GUI Guide 1.10.0 的 lvgl8 项目中。你可以在与我相同的条件下尝试,或者直接使用我的项目 Re: gui guider 1.10.0 chart bug 你好@MC_xiong_ge BR 哈利 Re: gui guider 1.10.0 chart bug 你好@MC_xiong_ge 请问您使用的是哪个版本的 GUI GUIDER IDE? 在 GUI GUIDER-1.9.0 中、可以设置为 0。 BR 哈利
查看全文