<?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: assign printf to bitbucket in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257690#M7587</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin &amp;amp; Martin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using only MQX, I am not linking against any other libraries as far as I know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I understand the principle but am unsure on how to implement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I: &lt;/P&gt;&lt;OL&gt;&lt;LI&gt;define BSPCFG_ENABLE_IODEBUG in user_config.h? Then rebuild the BSP? Because the chapter pointed to refers to the IO_DEBUG driver. But I am wanting to change the printf, STDOUT function... are they related? Is the debug driver necessary to redirect printf?&lt;/LI&gt;&lt;LI&gt;From what I understand in what you have pointed out, the best way is to install the null driver. Then redirect the STDOUT function to the null driver. To do this, do I install the NULL Driver, then do a file open of the null driver with a file block pointer fh_ptr, then using fh_ptr redirect STDOUT using;&amp;nbsp;&amp;nbsp; _io_set_handle(IO_PROC_STDOUT, fh_ptr); Where fh_ptr is the ptr to the file block?&lt;/LI&gt;&lt;LI&gt;Why would we use the method in (2) instead of this one? _io_set_handle(IO_PROC_STDOUT, fh_ptr);&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for helping&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Apr 2013 19:27:45 GMT</pubDate>
    <dc:creator>Cdn_aye</dc:creator>
    <dc:date>2013-04-09T19:27:45Z</dc:date>
    <item>
      <title>assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257685#M7582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting debugging printf statements on the serial port I use for a BT connection. Which really confuses the BT module. Is there anyway to build the bsp to direct printf to a bitbucket or NULL device?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried assigning the default&lt;/P&gt;&lt;P&gt;#define BSP_DEFAULT_IO_CHANNEL&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ttyb:"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; change so printf's not going on BT channel, ittya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but that didn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read that termio.c has something to do with this, but I can't find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Under 3.8.1 I commented out all the printf's or I could make a dummy function printff and do a global change. But then this has to be done for every upgrade... which is a pain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be gratefully accepted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2013 05:50:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257685#M7582</guid>
      <dc:creator>Cdn_aye</dc:creator>
      <dc:date>2013-04-09T05:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257686#M7583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert Lewis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check IO Debug (chapter 23) in IO MQX guide, There's example to redirect standard output using _io_set_handle function. I'll paste it here:&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_13655071393274344" jivemacro_uid="_13655071393274344"&gt;
&lt;P&gt;FILE_PTR fh_ptr;&lt;/P&gt;
&lt;P&gt;if(NULL == (fh_ptr = fopen("iodebug:", NULL))) {&lt;/P&gt;
&lt;P&gt;printf("Cannot open the debug output\n");&lt;/P&gt;
&lt;P&gt;} else {&lt;/P&gt;
&lt;P&gt;_io_set_handle(IO_STDOUT, fh_ptr);&lt;/P&gt;
&lt;P&gt;printf("This is printed to the debug output\n");&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;fflush(stdout);&lt;/P&gt;
&lt;P&gt;if (fh_ptr != NULL) {&lt;/P&gt;
&lt;P&gt;fclose(fh_ptr);&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;Taken from comments which are above the function _io_set_handle:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;This function changes the address of a default I/O handle, and returns&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;the previous one.&amp;nbsp; If an incorrect type is given, or the I/O handle was&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;TD&gt;uninitialized, 0 is returned.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;Function &lt;/SPAN&gt;io_set_handle is located in source/io/io_shand.c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;c0170&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2013 11:32:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257686#M7583</guid>
      <dc:creator>c0170</dc:creator>
      <dc:date>2013-04-09T11:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257687#M7584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at low level, printf() calls MQX serial IO driver or does it call C library printf() function (in your application) ? If it's MQX, you can use for example null device if you wish. Just make sure the driver is installed (_io_null_install()) and then you can direct stdout to the null device as shown in Martin's response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2013 11:33:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257687#M7584</guid>
      <dc:creator>Martin_</dc:creator>
      <dc:date>2013-04-09T11:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257688#M7585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a similar problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my system (MQX 3.8.1, CW 10.2 and a custom board based on K60) there is an unique serial port that is used for connection; sometimes I need to use it for debug (using printf).&lt;/P&gt;&lt;P&gt;I tried to use _io_set_handle function, but the IO_STDOUT flag set the handle only to the active task, all the other ones continue to work the old way.&lt;/P&gt;&lt;P&gt;Is there a way to set the handle to all the tasks in the system?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Teckna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2013 15:26:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257688#M7585</guid>
      <dc:creator>Teckna</dc:creator>
      <dc:date>2013-04-09T15:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257689#M7586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try _io_set_handle(IO_PROC_STDOUT, fh_ptr);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2013 16:44:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257689#M7586</guid>
      <dc:creator>Martin_</dc:creator>
      <dc:date>2013-04-09T16:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257690#M7587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin &amp;amp; Martin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using only MQX, I am not linking against any other libraries as far as I know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I understand the principle but am unsure on how to implement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I: &lt;/P&gt;&lt;OL&gt;&lt;LI&gt;define BSPCFG_ENABLE_IODEBUG in user_config.h? Then rebuild the BSP? Because the chapter pointed to refers to the IO_DEBUG driver. But I am wanting to change the printf, STDOUT function... are they related? Is the debug driver necessary to redirect printf?&lt;/LI&gt;&lt;LI&gt;From what I understand in what you have pointed out, the best way is to install the null driver. Then redirect the STDOUT function to the null driver. To do this, do I install the NULL Driver, then do a file open of the null driver with a file block pointer fh_ptr, then using fh_ptr redirect STDOUT using;&amp;nbsp;&amp;nbsp; _io_set_handle(IO_PROC_STDOUT, fh_ptr); Where fh_ptr is the ptr to the file block?&lt;/LI&gt;&lt;LI&gt;Why would we use the method in (2) instead of this one? _io_set_handle(IO_PROC_STDOUT, fh_ptr);&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for helping&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2013 19:27:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257690#M7587</guid>
      <dc:creator>Cdn_aye</dc:creator>
      <dc:date>2013-04-09T19:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257691#M7588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin &amp;amp; Martin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This worked as you explained; I just installed the null driver, then redirected STDOUT to that driver and the printf statements stopped appearing on my default port. The IO_DEBUG was a red herring I guess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Robert Lewis&#xD;
&#xD;
here is the code in case someone else finds it useful&#xD;
&#xD;
MQX_FILE_PTR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gs_NullDrv&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = NULL;&#xD;
.&#xD;
.&#xD;
.&#xD;
.&#xD;
&#xD;
&amp;nbsp;&amp;nbsp;&amp;nbsp; _io_null_install("NULL_DRV:");&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // install null driver so we can redirect printf debug statements in mqx&#xD;
&amp;nbsp;&amp;nbsp;&amp;nbsp; gs_NullDrv = fopen("NULL_DRV:", NULL);;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // get the Null driver file descriptor block&#xD;
&amp;nbsp;&amp;nbsp;&amp;nbsp; _io_set_handle(IO_PROC_STDOUT, gs_NullDrv);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // sets std out to null driver&#xD;
&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 06:24:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257691#M7588</guid>
      <dc:creator>Cdn_aye</dc:creator>
      <dc:date>2013-04-10T06:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257692#M7589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Martin for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the statement you suggested set the global handle, that is copied to the task private handle when the task is created: once the task is started, it uses the private handle (copied from the global handle) and modifying the global handle doesn't modify the private handle, so the task continues to work with the old handle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Teckna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 08:55:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257692#M7589</guid>
      <dc:creator>Teckna</dc:creator>
      <dc:date>2013-04-10T08:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257693#M7590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Teckna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to call that function from _bsp_enable_card() in your BSP. For example just before return. _bsp_enable_card() is called during MQX startup (_mqx() function) before application/idle tasks are created.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 09:05:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257693#M7590</guid>
      <dc:creator>Martin_</dc:creator>
      <dc:date>2013-04-10T09:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257694#M7591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to switch the handle in runtime, during the normal work, not only at the startup time.&lt;/P&gt;&lt;P&gt;Is there a way to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Teckna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 09:12:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257694#M7591</guid>
      <dc:creator>Teckna</dc:creator>
      <dc:date>2013-04-10T09:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257695#M7592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MQX printf() sends characters to a file returned by _io_get_handle(IO_STDOUT).&lt;/P&gt;&lt;P&gt;If we look into _io_get_handle() source code we will see&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="_jivemacro_uid_1365585943485476 jive_text_macro jive_macro_code" jivemacro_uid="_1365585943485476"&gt;
&lt;P&gt;case IO_STDOUT:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return kernel_data-&amp;gt;ACTIVE_PTR-&amp;gt;STDOUT_STREAM;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;so return value depends on the task specific data (active task). With this you can see that each task can have its own IO_STDOUT file.&lt;/P&gt;&lt;P&gt;For your specific application purposes you can customize your _io_get_handle() function to return for example&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13655859500356549" jivemacro_uid="_13655859500356549"&gt;
&lt;P&gt;case IO_STDOUT:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return kernel_data-&amp;gt;PROCESSOR_STDOUT;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;that is one global handle across all tasks. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 09:27:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257695#M7592</guid>
      <dc:creator>Martin_</dc:creator>
      <dc:date>2013-04-10T09:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: assign printf to bitbucket</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257696#M7593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for you suggestion, Martin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can work, I will have to remeber to modify the library when I will update MQX...&lt;/P&gt;&lt;P&gt;For future MQX releases, it can be useful to implement a mechanism to do this work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Teckna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 09:45:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/assign-printf-to-bitbucket/m-p/257696#M7593</guid>
      <dc:creator>Teckna</dc:creator>
      <dc:date>2013-04-10T09:45:19Z</dc:date>
    </item>
  </channel>
</rss>

