<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Zephyr debug on i.MX9x (A55) in Zephyr Project</title>
    <link>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2120954#M360</link>
    <description>&lt;P&gt;Hello,&lt;BR /&gt;according to official Zephyr documentation (&lt;A href="https://docs.zephyrproject.org/latest/boards/nxp/imx91_evk/doc/index.html" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;and &lt;A href="https://docs.zephyrproject.org/latest/boards/nxp/imx93_evk/doc/index.html" target="_self"&gt;here&lt;/A&gt;), it &lt;EM&gt;should&lt;/EM&gt; be possible to debug a Zephyr OS image on i.MX9x (A55) using Segger J-Link. However, in Visual Studio, no runner is generated and the command &lt;FONT face="courier new,courier"&gt;west debug&lt;/FONT&gt; fails with the following error:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;FATAL ERROR: no runners.yaml found in [...]build/zephyr. Either board imx91_evk/mimx9131 doesn't support west flash/debug/simulate, or a pristine build is needed.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Provided Zephyr debug is currently supported on i.MX9x AP (as of Zephyr 4.2), what am I missing?&lt;/P&gt;&lt;P&gt;Note that I was able to load and debug the image using Lauterbach T32, but I am looking for an alternative lightweight approach to debugging for the development team, possibly using J-Link from Segger.&lt;/P&gt;&lt;P&gt;Thank you in advance and best regards,&lt;BR /&gt;Stefano&lt;/P&gt;</description>
    <pubDate>Sun, 22 Jun 2025 12:39:53 GMT</pubDate>
    <dc:creator>TheUncle</dc:creator>
    <dc:date>2025-06-22T12:39:53Z</dc:date>
    <item>
      <title>Zephyr debug on i.MX9x (A55)</title>
      <link>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2120954#M360</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;according to official Zephyr documentation (&lt;A href="https://docs.zephyrproject.org/latest/boards/nxp/imx91_evk/doc/index.html" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;and &lt;A href="https://docs.zephyrproject.org/latest/boards/nxp/imx93_evk/doc/index.html" target="_self"&gt;here&lt;/A&gt;), it &lt;EM&gt;should&lt;/EM&gt; be possible to debug a Zephyr OS image on i.MX9x (A55) using Segger J-Link. However, in Visual Studio, no runner is generated and the command &lt;FONT face="courier new,courier"&gt;west debug&lt;/FONT&gt; fails with the following error:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;FATAL ERROR: no runners.yaml found in [...]build/zephyr. Either board imx91_evk/mimx9131 doesn't support west flash/debug/simulate, or a pristine build is needed.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Provided Zephyr debug is currently supported on i.MX9x AP (as of Zephyr 4.2), what am I missing?&lt;/P&gt;&lt;P&gt;Note that I was able to load and debug the image using Lauterbach T32, but I am looking for an alternative lightweight approach to debugging for the development team, possibly using J-Link from Segger.&lt;/P&gt;&lt;P&gt;Thank you in advance and best regards,&lt;BR /&gt;Stefano&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jun 2025 12:39:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2120954#M360</guid>
      <dc:creator>TheUncle</dc:creator>
      <dc:date>2025-06-22T12:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Zephyr debug on i.MX9x (A55)</title>
      <link>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2120958#M362</link>
      <description>&lt;P&gt;Hello again - adding some findings.&lt;/P&gt;&lt;P&gt;I forced the generation of the runner by copying a board.cmake file to the board folder I am working with. Now the "debug" command is responsive, but two problems arise:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;gdb client (and objdump/nm) from the&amp;nbsp;&lt;FONT face="courier new,courier"&gt;arm-zephyr-eabi&lt;/FONT&gt; toolchain are invoked - instead of&amp;nbsp;&lt;FONT face="courier new,courier"&gt;aarch64-zephyr-elf&lt;/FONT&gt;. This makes gdb client fail, because the executable (&lt;FONT face="courier new,courier"&gt;zephyr.elf&lt;/FONT&gt;) is not recognized as valid. Manually setting&amp;nbsp;&lt;FONT face="courier new,courier"&gt;gdbClientPath&lt;/FONT&gt;,&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;objdumpPath&lt;/SPAN&gt;&lt;/FONT&gt;, and&amp;nbsp;&lt;FONT face="courier new,courier"&gt;toolchainPrefix&lt;/FONT&gt; in launch.json seems to fix the issue with gdb client.&lt;/LI&gt;&lt;LI&gt;gdb seems to proceed, but jlink fails to halt the target and often the iMX enters a state in which every register access returns 0xDEADBEEF.&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I am trying to debug a Zephyr image using the stock u-boot found on i.MX9x EVK, stopping it at boot. I suspect that debug access is disabled by ELE in u-boot proper - which could explain why the target can be halted. Note however that, in the same conditions,&amp;nbsp; debugging with Lauterbach T32 works just fine.&lt;/P&gt;&lt;P&gt;Thank you for any help you may provide.&lt;BR /&gt;Stefano&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jun 2025 15:28:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2120958#M362</guid>
      <dc:creator>TheUncle</dc:creator>
      <dc:date>2025-06-22T15:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Zephyr debug on i.MX9x (A55)</title>
      <link>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2125163#M382</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-US"&gt;I have reproduced the original same issue on the IMX91-EVK, investigating the issue now.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="en-US"&gt;If you have any update for this issue, please let me know.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 00:22:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2125163#M382</guid>
      <dc:creator>June_Lu</dc:creator>
      <dc:date>2025-06-30T00:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Zephyr debug on i.MX9x (A55)</title>
      <link>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2128705#M408</link>
      <description>&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;I can create runners.yaml with iMX91. Following is the log. I also uploaded the file. Please ask the customer to:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;&amp;nbsp; - Debug why runners.yaml is not created, since it was created in my build&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;&amp;nbsp; - Maybe copy my runners.yaml to build/zephyr and then run west flash/debug see if this makes a difference. I cannot upload yaml file. So I change it to runners.log. Please change the name back.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;(venv) C:\Users\nxa08706\workspace-ZephyrProject\newproj\zephyr&amp;gt;dir build&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Volume in drive C is OSDisk&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Volume Serial Number is 9259-4D77&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Directory of C:\Users\nxa08706\workspace-ZephyrProject\newproj\zephyr&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;File Not Found&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;(venv) C:\Users\nxa08706\workspace-ZephyrProject\newproj\zephyr&amp;gt;west build -p -b imx91_evk/mimx9131 samples/hello_world&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- west build: generating a build system&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Loading Zephyr default modules (Zephyr base).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Application: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/samples/hello_world&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- CMake version: 4.0.3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found Python3: C:/Users/nxa08706/workspace-ZephyrProject/venv/Scripts/python.exe (found suitable version "3.13.5", minimum required is "3.12.1") found components: Interpreter&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Cache files will be written to: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/.cache&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Zephyr version: 4.2.00-rc1 (C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found west (found suitable version "1.4.0", minimum required is "0.14.0")&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Board: imx91_evk, qualifiers: mimx9131&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- ZEPHYR_TOOLCHAIN_VARIANT not set, trying to locate Zephyr SDK&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found host-tools: zephyr 0.17.2 (C:/Users/nxa08706/zephyr-sdk-0.17.2)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found toolchain: zephyr 0.17.2 (C:/Users/nxa08706/zephyr-sdk-0.17.2)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found Dtc: C:/Users/nxa08706/.mcuxpressotools/dtc-msys2/tools/usr/bin/dtc.exe (found suitable version "1.6.1", minimum required is "1.4.6")&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found BOARD.dts: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/boards/nxp/imx91_evk/imx91_evk_mimx9131.dts&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Generated zephyr.dts: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build/zephyr/zephyr.dts&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Generated pickled edt: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build/zephyr/edt.pickle&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Generated devicetree_generated.h: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build/zephyr/include/generated/zephyr/devicetree_generated.h&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build/zephyr/zephyr.dts:62.37-71.4: Warning (interrupt_provider): /interrupt-controller@48000000: Missing #address-cells in interrupt provider&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Parsing C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/Kconfig&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Loaded configuration 'C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/boards/nxp/imx91_evk/imx91_evk_mimx9131_defconfig'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Merged configuration 'C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/samples/hello_world/prj.conf'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Configuration saved to 'C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build/zephyr/.config'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Kconfig header saved to 'C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build/zephyr/include/generated/zephyr/autoconf.h'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found GnuLd: c:/users/nxa08706/zephyr-sdk-0.17.2/aarch64-zephyr-elf/aarch64-zephyr-elf/bin/ld.bfd.exe (found version "2.38")&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- The C compiler identification is GNU 12.2.0&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- The CXX compiler identification is GNU 12.2.0&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- The ASM compiler identification is GNU&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found assembler: C:/Users/nxa08706/zephyr-sdk-0.17.2/aarch64-zephyr-elf/bin/aarch64-zephyr-elf-gcc.exe&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Load components for MIMX9131:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;driver_cache_armv8a component is included.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Found gen_kobject_list: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/scripts/build/gen_kobject_list.py&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Configuring done (31.2s)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Generating done (2.2s)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Build files have been written to: C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- west build: building application&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;[1/123] Generating include/generated/zephyr/version.h&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;-- Zephyr version: 4.2.00-rc1 (C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr), build: v4.2.0-rc1-90-g0903efa88221&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;[123/123] Linking C executable zephyr\zephyr.elf&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Memory region Used Size Region Size %age Used&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;FLASH: 0 GB 0 GB&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;RAM: 176 KB 1 MB 17.19%&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;IDT_LIST: 0 GB 32 KB 0.00%&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Generating files from C:/Users/nxa08706/workspace-ZephyrProject/newproj/zephyr/build/zephyr/zephyr.elf for board: imx91_evk&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;(venv) C:\Users\nxa08706\workspace-ZephyrProject\newproj\zephyr&amp;gt;dir build\zephyr\runners.yaml&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Volume in drive C is OSDisk&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Volume Serial Number is 9259-4D77&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;Directory of C:\Users\nxa08706\workspace-ZephyrProject\newproj\zephyr\build\zephyr&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;07/03/2025 08:51 AM 665 runners.yaml&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;1 File(s) 665 bytes&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 11pt; font-family: Poppins; font-size: 12.0pt; color: #333f48;"&gt;&lt;SPAN&gt;0 Dir(s) 48,964,829,184 bytes free&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 14:22:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Zephyr-Project/Zephyr-debug-on-i-MX9x-A55/m-p/2128705#M408</guid>
      <dc:creator>June_Lu</dc:creator>
      <dc:date>2025-07-04T14:22:06Z</dc:date>
    </item>
  </channel>
</rss>

