<?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>MCUXpresso IDEのトピックUSB RAM use</title>
    <link>https://community.nxp.com/t5/MCUXpresso-IDE/USB-RAM-use/m-p/761255#M2114</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;library usb Virtual Com Port, use 17K RAM.&lt;/P&gt;&lt;P&gt;question 1:&lt;/P&gt;&lt;P&gt;there is a way to decrease the ram size used ?&lt;/P&gt;&lt;P&gt;type const in flash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/35602i992AB99058BFA6A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;question 2:&lt;/P&gt;&lt;P&gt;how to &lt;STRONG&gt;switch&lt;/STRONG&gt; CDC, with request to send or without.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or, how to &lt;STRONG&gt;automatic&lt;/STRONG&gt; ECHO request to send MCU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code ever send Frame (resquest to send).&lt;/P&gt;&lt;P&gt;cdc without uart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Carlos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jan 2018 12:03:46 GMT</pubDate>
    <dc:creator>CCandido</dc:creator>
    <dc:date>2018-01-03T12:03:46Z</dc:date>
    <item>
      <title>USB RAM use</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/USB-RAM-use/m-p/761255#M2114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;library usb Virtual Com Port, use 17K RAM.&lt;/P&gt;&lt;P&gt;question 1:&lt;/P&gt;&lt;P&gt;there is a way to decrease the ram size used ?&lt;/P&gt;&lt;P&gt;type const in flash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/35602i992AB99058BFA6A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;question 2:&lt;/P&gt;&lt;P&gt;how to &lt;STRONG&gt;switch&lt;/STRONG&gt; CDC, with request to send or without.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or, how to &lt;STRONG&gt;automatic&lt;/STRONG&gt; ECHO request to send MCU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code ever send Frame (resquest to send).&lt;/P&gt;&lt;P&gt;cdc without uart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Carlos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2018 12:03:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/USB-RAM-use/m-p/761255#M2114</guid>
      <dc:creator>CCandido</dc:creator>
      <dc:date>2018-01-03T12:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: USB RAM use</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/USB-RAM-use/m-p/761256#M2115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data portion of RAM usage will consist of various elements including heap, stack, variables, buffers etc. The allocation sizes for the heap and the stack may be candidates for reduction:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The MCUXpresso IDE User Guide chapter 'Memory Configuration and Linker Scripts' covers this are is some detail - in particular see 'More advanced heap/stack placement'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement for buffer space within a USB project will typically be chosen based on some performance requirement. You would have to perform some local testing to see what penalties might be seen if these were reduced.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Questions relating to specific SDK projects should be raised in the SDK forum - where the SDK, MCU, board and project name should be given.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yours,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MCUXpresso Support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 11:08:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/USB-RAM-use/m-p/761256#M2115</guid>
      <dc:creator>lpcxpresso_supp</dc:creator>
      <dc:date>2018-01-04T11:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: USB RAM use</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/USB-RAM-use/m-p/761257#M2116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hi &amp;nbsp;Support,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I'll try to reduce this size.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Carlos.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 12:50:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/USB-RAM-use/m-p/761257#M2116</guid>
      <dc:creator>CCandido</dc:creator>
      <dc:date>2018-01-04T12:50:33Z</dc:date>
    </item>
  </channel>
</rss>

