<?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 Re: RTCS pre-defined parameter (PCB,Pool,socket) in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331950#M10665</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx, Daniel, If you have such doc, PLS share with me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, as you said, if I could confirm my socket number, so PCB,Poll,&amp;amp;socket is decided same as socket number?&lt;/P&gt;&lt;P&gt;It's enough for entire application? I could try for this guide.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Aug 2014 03:38:22 GMT</pubDate>
    <dc:creator>daweiyou</dc:creator>
    <dc:date>2014-08-04T03:38:22Z</dc:date>
    <item>
      <title>RTCS pre-defined parameter (PCB,Pool,socket)</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331948#M10663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We could find some pre-defined parameter for RTCS applications, like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; /* runtime RTCS configuration for devices with small RAM, for others the default BSP setting is used */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCSPCB_init = 4;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCSPCB_grow = 2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCSPCB_max = 20;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCS_msgpool_init = 4;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCS_msgpool_grow = 2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCS_msgpool_max&amp;nbsp; = 20;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCS_socket_part_init = 4;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCS_socket_part_grow = 2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _RTCS_socket_part_max&amp;nbsp; = 20;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;user could modify the default value, I want to know, &lt;/P&gt;&lt;P&gt;(1)How these values work? since Max value is defined and allocated, why not set the init value same with Max value?&lt;/P&gt;&lt;P&gt;(2)how to decide these value for one specified application? for example, I open one FTP, one SNMP, maybe one HTTPs application together, how to calculate the right value? &lt;/P&gt;&lt;P&gt;(3)when the value is not renough, how to check? I see&amp;nbsp; some task crashed in MQX spy tool. but no guide to use this tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Aug 2014 15:42:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331948#M10663</guid>
      <dc:creator>daweiyou</dc:creator>
      <dc:date>2014-08-03T15:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: RTCS pre-defined parameter (PCB,Pool,socket)</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331949#M10664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dawei:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me answer your questions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each socket has its own PCBs and each PCB has its own msgpool.&lt;/P&gt;&lt;P&gt;we cann't set the init value same with Max value, because we want spend less RAM in the sockets in most cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you will have a total of 8 sockets then suggest the following settings&lt;/P&gt;&lt;P&gt;_RTCSPCB_init = 8;&lt;/P&gt;&lt;P&gt;_RTCSPCB_grow = 2;&lt;/P&gt;&lt;P&gt;_RTCSPCB_max = 10;&lt;/P&gt;&lt;P&gt;_RTCS_msgpool_init = 8;&lt;/P&gt;&lt;P&gt;_RTCS_msgpool_grow = 2;&lt;/P&gt;&lt;P&gt;_RTCS_msgpool_max = 10;&lt;/P&gt;&lt;P&gt;_RTCS_socket_part_init = 8;&lt;/P&gt;&lt;P&gt;_RTCS_socket_part_grow = 2;&lt;/P&gt;&lt;P&gt;_RTCS_socket_part_max = 10;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check and debug this value with TAD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to make a document about this later.&lt;BR /&gt;Have a great day,&lt;BR /&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 01:58:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331949#M10664</guid>
      <dc:creator>danielchen</dc:creator>
      <dc:date>2014-08-04T01:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: RTCS pre-defined parameter (PCB,Pool,socket)</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331950#M10665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx, Daniel, If you have such doc, PLS share with me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, as you said, if I could confirm my socket number, so PCB,Poll,&amp;amp;socket is decided same as socket number?&lt;/P&gt;&lt;P&gt;It's enough for entire application? I could try for this guide.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 03:38:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331950#M10665</guid>
      <dc:creator>daweiyou</dc:creator>
      <dc:date>2014-08-04T03:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: RTCS pre-defined parameter (PCB,Pool,socket)</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331951#M10666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dawei:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following link is for the document (draft)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-102077"&gt;MQX RTCS Memory Configuration Parameters Introduction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Daniel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2014 02:34:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331951#M10666</guid>
      <dc:creator>danielchen</dc:creator>
      <dc:date>2014-08-26T02:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: RTCS pre-defined parameter (PCB,Pool,socket)</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331952#M10667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2014 00:15:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/RTCS-pre-defined-parameter-PCB-Pool-socket/m-p/331952#M10667</guid>
      <dc:creator>daweiyou</dc:creator>
      <dc:date>2014-08-29T00:15:23Z</dc:date>
    </item>
  </channel>
</rss>

