<?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 PPP_initialize return error 1203 after HTTSRV_init called in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/PPP-initialize-return-error-1203-after-HTTSRV-init-called/m-p/255922#M7522</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Has somebody found problem like me?&lt;/P&gt;&lt;P&gt;My project is using both PPP-Serial (GPRS) and HTTP-Server (Ethernet).&lt;/P&gt;&lt;P&gt;And it has ever worked well until I tested switch HTTPD to HTTPSRV.&lt;/P&gt;&lt;P&gt;I facing a problem that after I called HTTSRV_init,The PPP_initialze will always return error code 1203.&lt;/P&gt;&lt;P&gt;Or if I called PPP_initialze first, The HTTSRV_init will never return a value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Sep 2013 02:34:56 GMT</pubDate>
    <dc:creator>sumate</dc:creator>
    <dc:date>2013-09-30T02:34:56Z</dc:date>
    <item>
      <title>PPP_initialize return error 1203 after HTTSRV_init called</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/PPP-initialize-return-error-1203-after-HTTSRV-init-called/m-p/255922#M7522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Has somebody found problem like me?&lt;/P&gt;&lt;P&gt;My project is using both PPP-Serial (GPRS) and HTTP-Server (Ethernet).&lt;/P&gt;&lt;P&gt;And it has ever worked well until I tested switch HTTPD to HTTPSRV.&lt;/P&gt;&lt;P&gt;I facing a problem that after I called HTTSRV_init,The PPP_initialze will always return error code 1203.&lt;/P&gt;&lt;P&gt;Or if I called PPP_initialze first, The HTTSRV_init will never return a value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 02:34:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/PPP-initialize-return-error-1203-after-HTTSRV-init-called/m-p/255922#M7522</guid>
      <dc:creator>sumate</dc:creator>
      <dc:date>2013-09-30T02:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: PPP_initialize return error 1203 after HTTSRV_init called</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/PPP-initialize-return-error-1203-after-HTTSRV-init-called/m-p/255923#M7523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error code means RTCSERR_PPP_CREATE_PKT_POOL_FAILED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to increase the size of your message pool (_RTCS_msgpool_init, grow, max):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13805234928065691" jivemacro_uid="_13805234928065691" modifiedtitle="true"&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCSPCB_init = 4;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCSPCB_grow = 2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCSPCB_max = 20;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCS_msgpool_init = 4;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCS_msgpool_grow = 2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCS_msgpool_max&amp;nbsp; = 20;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCS_socket_part_init = 4;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCS_socket_part_grow = 2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _RTCS_socket_part_max&amp;nbsp; = 20;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Sep 2013 06:48:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/PPP-initialize-return-error-1203-after-HTTSRV-init-called/m-p/255923#M7523</guid>
      <dc:creator>Martin_</dc:creator>
      <dc:date>2013-09-30T06:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: PPP_initialize return error 1203 after HTTSRV_init called</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/PPP-initialize-return-error-1203-after-HTTSRV-init-called/m-p/255924#M7524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;Thank you for suggestion.&lt;/P&gt;&lt;P&gt;Actually I've declared those codes in a project, It works with HTTPD but doesn't work with HTTPSRV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 10:06:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/PPP-initialize-return-error-1203-after-HTTSRV-init-called/m-p/255924#M7524</guid>
      <dc:creator>sumate</dc:creator>
      <dc:date>2013-10-01T10:06:18Z</dc:date>
    </item>
  </channel>
</rss>

