<?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 sprintf, PRINTF, DbgConsole_Printf with float and double in Kinetis Software Development Kit</title>
    <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/sprintf-PRINTF-DbgConsole-Printf-with-float-and-double/m-p/664206#M7291</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using Kinetis Design Studio 3.2.0 with SDK 2.0 for the K64F development board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After browsing a lot of confusing and conflicting information and some testing, I found the following concerning printf() with float and double values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sprintf() comes from the newlib-nano, and in order to&amp;nbsp; activate floating point I need to set the following linker flag as described in many places:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="printf2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/15471i746F1DA4ADB99037/image-size/large?v=v2&amp;amp;px=999" role="button" title="printf2.png" alt="printf2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The very useful debug console also has a PRINTF function, that maps to DbgConsole_Printf, which is implemented separately and independently. In order to activate its floating point option, one needs to define PRINTF_FLOAT_ENABLE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="printf1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/15417i105F36EEC6A4A085/image-size/large?v=v2&amp;amp;px=999" role="button" title="printf1.png" alt="printf1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The test program included below furthermore revealed a bug in the PRINTF=DbgConsole_Printf implementation:&lt;/P&gt;&lt;P&gt;The bit pattern 0xffffffff interpreted as a 32-bit signed integer should print as "-1" but wrongly prints as "1" instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps some others to save time,&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#include "fsl_debug_console.h"&lt;BR /&gt;#include "board.h"&lt;BR /&gt;#include "pin_mux.h"&lt;BR /&gt;#include "clock_config.h"&lt;BR /&gt;#include &amp;lt;math.h&amp;gt;&lt;BR /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;uint8_t u8 = 0xffU;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;uint16_t u16 = 0xffffU;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;uint32_t u32 = 0xffffffffU;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;int8_t i8 = 100U;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;int16_t i16 = 20000U;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;int32_t i32 = 1000000000U;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;float f = sqrtf(2.0);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;double d = sqrt(2.0);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;char s[80];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BOARD_InitPins();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BOARD_BootClockRUN();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BOARD_InitDebugConsole();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("\r\nprintf test\r\n\r\n");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("Using PRINTF = DbgConsole_Printf:\r\n\r\n");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u8 = %u = %x\r\n", (unsigned int) u8, (unsigned int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u16 = %u = %x\r\n", (unsigned int) u16, (unsigned int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u32 = %u = %x\r\n", (unsigned int) u32, (unsigned int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u8 as integer = %d\r\n", (int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u16 as integer = %d\r\n", (int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u32 as integer = %d\r\n", (int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("i8 = %d\r\n", (int) i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("i16 = %d\r\n", (int) i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("i32 = %d\r\n", (int) i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("negative i8 = %d\r\n", (int) -i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("negative i16 = %d\r\n", (int) -i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("negative i32 = %d\r\n", (int) -i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("float = %.16f\r\n", f);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("double = %.16f\r\n", d);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("\r\nUsing sprintf:\r\n\r\n");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u8 = %u = %x\r\n", (unsigned int) u8, (unsigned int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u16 = %u = %x\r\n", (unsigned int) u16, (unsigned int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u32 = %u = %x\r\n", (unsigned int) u32, (unsigned int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u8 as integer = %d\r\n", (int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u16 as integer = %d\r\n", (int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u32 as integer = %d\r\n", (int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "i8 = %d\r\n", (int) i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "i16 = %d\r\n", (int) i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "i32 = %d\r\n", (int) i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "negative i8 = %d\r\n", (int) -i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "negative i16 = %d\r\n", (int) -i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "negative i32 = %d\r\n", (int) -i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "float = %.16f\r\n", f);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "double = %.16f\r\n", d);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;while (1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 18 Mar 2017 11:24:30 GMT</pubDate>
    <dc:creator>gerhardheinzel</dc:creator>
    <dc:date>2017-03-18T11:24:30Z</dc:date>
    <item>
      <title>sprintf, PRINTF, DbgConsole_Printf with float and double</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/sprintf-PRINTF-DbgConsole-Printf-with-float-and-double/m-p/664206#M7291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using Kinetis Design Studio 3.2.0 with SDK 2.0 for the K64F development board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After browsing a lot of confusing and conflicting information and some testing, I found the following concerning printf() with float and double values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sprintf() comes from the newlib-nano, and in order to&amp;nbsp; activate floating point I need to set the following linker flag as described in many places:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="printf2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/15471i746F1DA4ADB99037/image-size/large?v=v2&amp;amp;px=999" role="button" title="printf2.png" alt="printf2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The very useful debug console also has a PRINTF function, that maps to DbgConsole_Printf, which is implemented separately and independently. In order to activate its floating point option, one needs to define PRINTF_FLOAT_ENABLE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="printf1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/15417i105F36EEC6A4A085/image-size/large?v=v2&amp;amp;px=999" role="button" title="printf1.png" alt="printf1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The test program included below furthermore revealed a bug in the PRINTF=DbgConsole_Printf implementation:&lt;/P&gt;&lt;P&gt;The bit pattern 0xffffffff interpreted as a 32-bit signed integer should print as "-1" but wrongly prints as "1" instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps some others to save time,&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#include "fsl_debug_console.h"&lt;BR /&gt;#include "board.h"&lt;BR /&gt;#include "pin_mux.h"&lt;BR /&gt;#include "clock_config.h"&lt;BR /&gt;#include &amp;lt;math.h&amp;gt;&lt;BR /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int main(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;uint8_t u8 = 0xffU;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;uint16_t u16 = 0xffffU;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;uint32_t u32 = 0xffffffffU;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;int8_t i8 = 100U;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;int16_t i16 = 20000U;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;int32_t i32 = 1000000000U;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;float f = sqrtf(2.0);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;double d = sqrt(2.0);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;char s[80];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BOARD_InitPins();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BOARD_BootClockRUN();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;BOARD_InitDebugConsole();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("\r\nprintf test\r\n\r\n");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("Using PRINTF = DbgConsole_Printf:\r\n\r\n");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u8 = %u = %x\r\n", (unsigned int) u8, (unsigned int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u16 = %u = %x\r\n", (unsigned int) u16, (unsigned int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u32 = %u = %x\r\n", (unsigned int) u32, (unsigned int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u8 as integer = %d\r\n", (int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u16 as integer = %d\r\n", (int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("u32 as integer = %d\r\n", (int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("i8 = %d\r\n", (int) i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("i16 = %d\r\n", (int) i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("i32 = %d\r\n", (int) i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("negative i8 = %d\r\n", (int) -i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("negative i16 = %d\r\n", (int) -i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("negative i32 = %d\r\n", (int) -i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("float = %.16f\r\n", f);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("double = %.16f\r\n", d);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("\r\nUsing sprintf:\r\n\r\n");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u8 = %u = %x\r\n", (unsigned int) u8, (unsigned int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u16 = %u = %x\r\n", (unsigned int) u16, (unsigned int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u32 = %u = %x\r\n", (unsigned int) u32, (unsigned int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u8 as integer = %d\r\n", (int) u8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u16 as integer = %d\r\n", (int) u16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "u32 as integer = %d\r\n", (int) u32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "i8 = %d\r\n", (int) i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "i16 = %d\r\n", (int) i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "i32 = %d\r\n", (int) i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "negative i8 = %d\r\n", (int) -i8);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "negative i16 = %d\r\n", (int) -i16);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "negative i32 = %d\r\n", (int) -i32);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "float = %.16f\r\n", f);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(s, "double = %.16f\r\n", d);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PRINTF("%s", s);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;while (1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;return 0;&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2017 11:24:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/sprintf-PRINTF-DbgConsole-Printf-with-float-and-double/m-p/664206#M7291</guid>
      <dc:creator>gerhardheinzel</dc:creator>
      <dc:date>2017-03-18T11:24:30Z</dc:date>
    </item>
  </channel>
</rss>

