<?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 Script in MCUXpresso in MCUXpresso General</title>
    <link>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2001826#M5507</link>
    <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;Often, during debug operations, I have the necessity to use many repetitive commands such as clearing breakpoints, assigning values to variables, and so on.&lt;/P&gt;&lt;P&gt;I would like to know if there is the possibility to use a kind of script, similar to a batch file, in which these commands can be written.&lt;/P&gt;&lt;P&gt;Did you have any similar problems?&lt;BR /&gt;How did you fix it?&lt;/P&gt;&lt;P&gt;Thank you very much for your help and cooperation.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
    <pubDate>Tue, 26 Nov 2024 09:15:37 GMT</pubDate>
    <dc:creator>_Ferrari_</dc:creator>
    <dc:date>2024-11-26T09:15:37Z</dc:date>
    <item>
      <title>Script in MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2001826#M5507</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;Often, during debug operations, I have the necessity to use many repetitive commands such as clearing breakpoints, assigning values to variables, and so on.&lt;/P&gt;&lt;P&gt;I would like to know if there is the possibility to use a kind of script, similar to a batch file, in which these commands can be written.&lt;/P&gt;&lt;P&gt;Did you have any similar problems?&lt;BR /&gt;How did you fix it?&lt;/P&gt;&lt;P&gt;Thank you very much for your help and cooperation.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 09:15:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2001826#M5507</guid>
      <dc:creator>_Ferrari_</dc:creator>
      <dc:date>2024-11-26T09:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Script in MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2002227#M5508</link>
      <description>&lt;P&gt;Hello, my name is Pavel, and I will be supporting your case, could you elaborate further about what tool are you using? and what command are you typing? on the IDE MCUXPresso could use your own script.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Pavel_Hernandez_0-1732651156455.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/312658i4B07EDCB22CAC183/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Pavel_Hernandez_0-1732651156455.png" alt="Pavel_Hernandez_0-1732651156455.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Image example&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 19:59:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2002227#M5508</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-11-26T19:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Script in MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2009081#M5542</link>
      <description>&lt;P&gt;&lt;BR /&gt;Many applications have input parameters on the command line, conventionally called argc and argv.&lt;BR /&gt;For example, the Linux command 'ls' has many command-line parameters: 'ls -l' or 'ls *.c'....&lt;BR /&gt;In my case, I have an application divided into two parts:&lt;BR /&gt;Program_A&lt;BR /&gt;Program_B&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_Ferrari__4-1733483406892.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/314542i14EA8E815D2E6AFF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="_Ferrari__4-1733483406892.png" alt="_Ferrari__4-1733483406892.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Program_A calls Program_B passing a parameter written in memory argv (4 bytes) inserted into a segment that is not cleared&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;__SECTION(noinit,RAM4) int32_t argv;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_Ferrari__0-1733482490070.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/314538iAF5973198D1DC8F9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="_Ferrari__0-1733482490070.png" alt="_Ferrari__0-1733482490070.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I debug Program_B, I must first assign a value to argv and then execute the debug.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Therefore, I was wondering if there is a way to write a script in MCUXpresso that can assign a value and perform a reset of the program&lt;/P&gt;&lt;P&gt;For example the script should assign a value to argv&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_Ferrari__2-1733483256196.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/314540i60428DE61F3E089B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="_Ferrari__2-1733483256196.png" alt="_Ferrari__2-1733483256196.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;then should perform a reset simulating a click on the reset icon&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_Ferrari__3-1733483302776.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/314541i405D23DD3E1CC39F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="_Ferrari__3-1733483302776.png" alt="_Ferrari__3-1733483302776.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help and cooperation&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 11:11:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2009081#M5542</guid>
      <dc:creator>_Ferrari_</dc:creator>
      <dc:date>2024-12-06T11:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Script in MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2011409#M5548</link>
      <description>&lt;P&gt;Hello, this new request is different from the original petition, I recommend open a new case with appropriate title, to get help from the support or community.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 01:14:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/Script-in-MCUXpresso/m-p/2011409#M5548</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-12-11T01:14:10Z</dc:date>
    </item>
  </channel>
</rss>

