<?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 How to use LDD? in Processor Expert Software</title>
    <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389702#M3044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, community! i am beginner for FRDM-k64F, CW 10.6 and Processor Expert. At first, i try to read registers from build-in&amp;nbsp; FXOS8700CQ via I2C and print it to console. I use CPU clock as default, then i added I2C_LDD component, configure it as MASTER with: interrupt=enable, address mode=7-bits, Target slave address init=0x1d, SDA pin=PTE25, SCL pin=PTE24, internal freq.=47.98 Mhz, Bits 0-2 =010, Bits 3-5 =100, SCL freq = 214.235 kHz, autoinit=Yes. Then i make a code as "Help on component" for reading 16 bytes from SLAVE from register address=0x00, and added a procedure, which printed in console Error code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;void print_error(uint8_t err_type)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; switch(err_type)&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x00U: printf("ALL OK \n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x07U: printf("Device is disabled \n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x01U: printf("ERR_SPEED\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x08U: printf("The master device is busy\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x81U: printf("Stop condition isn't possible generated on end transmission\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x8DU: printf("ERR_PARAM_ADDRESS_TYPE -&amp;nbsp; Invalid address type\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x89U: printf("ERR_PARAM_ADDRESS Invalid address value\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x09U: printf("Requested value or method not available\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;main.c:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;....................&lt;/P&gt;&lt;P&gt;LDD_TDeviceData *My_IIC_Ptr; &lt;/P&gt;&lt;P&gt;LDD_TError Error;&lt;/P&gt;&lt;P&gt;uint8_t TX_buff[1];&lt;/P&gt;&lt;P&gt;uint8_t RX_buff[16];&lt;/P&gt;&lt;P&gt;TX_buff[0]=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Error= CI2C1_MasterSendBlock(My_IIC_Ptr, (uint8_t *) TX_buff, 1, LDD_I2C_NO_SEND_STOP);// send to &lt;SPAN style="font-size: 13.63636302948px;"&gt;FXOS8700CQ register =0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Error= CI2C1_MasterReceiveBlock(My_IIC_Ptr, (uint8_t *) RX_buff, 16, LDD_I2C_SEND_STOP);// read &lt;SPAN style="font-size: 13.63636302948px;"&gt;registers 0x00-0x0F &lt;/SPAN&gt;from &lt;SPAN style="font-size: 13.63636302948px;"&gt;FXOS8700CQ&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; print_error(&lt;SPAN style="font-size: 13.63636302948px;"&gt;Error&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the DEBUG after execution "&lt;SPAN style="font-size: 13.63636302948px;"&gt;CI2C1_&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.63636302948px;"&gt;MasterReceiveBlock", I get "error=0x08", "The master device is busy", and input buffer &lt;SPAN style="font-size: 13.63636302948px;"&gt;RX_buff contains 0x00.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if I added in code checking&amp;nbsp; "DataReceivedFlg" and "DataTransmittedFlg" (as in "Help"), program enters an infinite loop, because it is not an event occurs (I2C2_OnMasterBlockSent or I2C2_OnMasterBlockReceived) . &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;my questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1) Do I Need added "PinSetting" component if i already added I2C_LDD ?&lt;/P&gt;&lt;P&gt;2) why I do not see the processing of an event in the debugger? (&lt;SPAN style="font-size: 13.63636302948px;"&gt;I2C2_OnMasterBlockSent and I2C2_OnMasterBlockReceived)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;3) if i try to use "CI2C1_SelectSlaveDevice" method for set a new slave, i get &lt;SPAN style="font-size: 13.63636302948px;"&gt;"error=0x08", "The master device is busy". Why?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PLS, HELP ME TO UNDERSTANDING HOW TO USE LDD COMPONENT CORRECRTLY !!!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;later i planning to use I2S port in FRDM-K64F, but i think what I can not work with it as long as I do not understand how to properly use LDD_components in PEx.&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;P&gt;P.S. I tried to use another code for I2C, based on a macros. and it work finely....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Oct 2014 09:11:29 GMT</pubDate>
    <dc:creator>oleglavrukhin</dc:creator>
    <dc:date>2014-10-14T09:11:29Z</dc:date>
    <item>
      <title>How to use LDD?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389702#M3044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, community! i am beginner for FRDM-k64F, CW 10.6 and Processor Expert. At first, i try to read registers from build-in&amp;nbsp; FXOS8700CQ via I2C and print it to console. I use CPU clock as default, then i added I2C_LDD component, configure it as MASTER with: interrupt=enable, address mode=7-bits, Target slave address init=0x1d, SDA pin=PTE25, SCL pin=PTE24, internal freq.=47.98 Mhz, Bits 0-2 =010, Bits 3-5 =100, SCL freq = 214.235 kHz, autoinit=Yes. Then i make a code as "Help on component" for reading 16 bytes from SLAVE from register address=0x00, and added a procedure, which printed in console Error code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;void print_error(uint8_t err_type)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; switch(err_type)&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x00U: printf("ALL OK \n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x07U: printf("Device is disabled \n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x01U: printf("ERR_SPEED\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x08U: printf("The master device is busy\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x81U: printf("Stop condition isn't possible generated on end transmission\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x8DU: printf("ERR_PARAM_ADDRESS_TYPE -&amp;nbsp; Invalid address type\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x89U: printf("ERR_PARAM_ADDRESS Invalid address value\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; case 0x09U: printf("Requested value or method not available\n"); break;&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;main.c:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;....................&lt;/P&gt;&lt;P&gt;LDD_TDeviceData *My_IIC_Ptr; &lt;/P&gt;&lt;P&gt;LDD_TError Error;&lt;/P&gt;&lt;P&gt;uint8_t TX_buff[1];&lt;/P&gt;&lt;P&gt;uint8_t RX_buff[16];&lt;/P&gt;&lt;P&gt;TX_buff[0]=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Error= CI2C1_MasterSendBlock(My_IIC_Ptr, (uint8_t *) TX_buff, 1, LDD_I2C_NO_SEND_STOP);// send to &lt;SPAN style="font-size: 13.63636302948px;"&gt;FXOS8700CQ register =0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Error= CI2C1_MasterReceiveBlock(My_IIC_Ptr, (uint8_t *) RX_buff, 16, LDD_I2C_SEND_STOP);// read &lt;SPAN style="font-size: 13.63636302948px;"&gt;registers 0x00-0x0F &lt;/SPAN&gt;from &lt;SPAN style="font-size: 13.63636302948px;"&gt;FXOS8700CQ&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; print_error(&lt;SPAN style="font-size: 13.63636302948px;"&gt;Error&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the DEBUG after execution "&lt;SPAN style="font-size: 13.63636302948px;"&gt;CI2C1_&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.63636302948px;"&gt;MasterReceiveBlock", I get "error=0x08", "The master device is busy", and input buffer &lt;SPAN style="font-size: 13.63636302948px;"&gt;RX_buff contains 0x00.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if I added in code checking&amp;nbsp; "DataReceivedFlg" and "DataTransmittedFlg" (as in "Help"), program enters an infinite loop, because it is not an event occurs (I2C2_OnMasterBlockSent or I2C2_OnMasterBlockReceived) . &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;my questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1) Do I Need added "PinSetting" component if i already added I2C_LDD ?&lt;/P&gt;&lt;P&gt;2) why I do not see the processing of an event in the debugger? (&lt;SPAN style="font-size: 13.63636302948px;"&gt;I2C2_OnMasterBlockSent and I2C2_OnMasterBlockReceived)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;3) if i try to use "CI2C1_SelectSlaveDevice" method for set a new slave, i get &lt;SPAN style="font-size: 13.63636302948px;"&gt;"error=0x08", "The master device is busy". Why?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PLS, HELP ME TO UNDERSTANDING HOW TO USE LDD COMPONENT CORRECRTLY !!!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;later i planning to use I2S port in FRDM-K64F, but i think what I can not work with it as long as I do not understand how to properly use LDD_components in PEx.&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;P&gt;P.S. I tried to use another code for I2C, based on a macros. and it work finely....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 09:11:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389702#M3044</guid>
      <dc:creator>oleglavrukhin</dc:creator>
      <dc:date>2014-10-14T09:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to use LDD?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389703#M3045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a full example project for you (attached), but it is for KDS (Kinetis Design Studio), using Processor Expert.&lt;/P&gt;&lt;P&gt;As you might see, it comes with a Processor Expert component for the FXOS8700 (see &lt;A href="http://mcuoneclipse.com/2014/10/13/enablingdisabling-fxos8700cq-device-needs-a-delay/" title="http://mcuoneclipse.com/2014/10/13/enablingdisabling-fxos8700cq-device-needs-a-delay/"&gt;Enabling/Disabling FXOS8700CQ Device Needs a Delay | MCU on Eclipse&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;I'm using the I2C LDD with another driver layer (GenericI2C): don't get confused by that, as I'm using this as a compatibility layer between LDD and non-LDD layers.&lt;/P&gt;&lt;P&gt;More about this in &lt;A href="http://mcuoneclipse.com/2012/12/04/a-generic-i2c-high-level-driver/" title="http://mcuoneclipse.com/2012/12/04/a-generic-i2c-high-level-driver/"&gt;A Generic I2C High Level Driver | MCU on Eclipse&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recommend that you have a look at &lt;A href="http://mcuoneclipse.com/2012/09/21/tutorial-accelerating-the-kl25z-freedom-board/" title="http://mcuoneclipse.com/2012/09/21/tutorial-accelerating-the-kl25z-freedom-board/"&gt;Tutorial: Accelerating the KL25Z Freedom Board | MCU on Eclipse&lt;/A&gt;. This is for the KL25Z, but it uses the I2C LDD and it applies for the K64F as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 09:23:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389703#M3045</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2014-10-14T09:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to use LDD?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389704#M3046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Erich. But&amp;nbsp; I still want to get answers to their questions 1) 2) 3)...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 11:56:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389704#M3046</guid>
      <dc:creator>oleglavrukhin</dc:creator>
      <dc:date>2014-10-14T11:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to use LDD?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389705#M3047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oleg,&lt;/P&gt;&lt;P&gt;1) yes, as with this the system wide muxing is done.&lt;/P&gt;&lt;P&gt;2) you only get these events for completed transactions. If your transaction is stuck you won't get the events&lt;/P&gt;&lt;P&gt;3) that is very likely due 2) above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recommend that you check with a logic analyzer your SDA and SCL lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 13:14:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389705#M3047</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2014-10-14T13:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to use LDD?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389706#M3048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Erich, building your projects return some errors: "PE_LDD_COMPONENT_BitIoLdd1_ID (and &lt;SPAN style="font-size: 13.63636302948px;"&gt;BitIoLdd2 and &lt;SPAN style="font-size: 13.63636302948px;"&gt;BitIoLdd3) undeclarated". I can't found this macro in project. where they are hidden? :smileyblush:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 15:33:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389706#M3048</guid>
      <dc:creator>oleglavrukhin</dc:creator>
      <dc:date>2014-10-14T15:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use LDD?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389707#M3049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is in Generated_Code/PE_Types.h of the zip file, around line 207:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;#define PE_LDD_COMPONENT_BitIoLdd1_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;0x01U&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;#define PE_LDD_COMPONENT_BitIoLdd2_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;0x02U&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;#define PE_LDD_COMPONENT_BitIoLdd3_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;TD&gt;0x03U&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 17:10:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389707#M3049</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2014-10-14T17:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to use LDD?</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389708#M3050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Erich, Building Your project return new errors with #define ... and I stop work with it.&lt;/P&gt;&lt;P&gt;But I studied Your tutorials in "mcuoneclipse" and Understanding, what&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;MasterSendBlock() and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;MasterReceiveBlock() &lt;SPAN style="font-size: 13.63636302948px;"&gt;methods do not have the necessary flexibility, so you use Generic I2C and get the desired results.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.63636302948px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I found&amp;nbsp; a&amp;nbsp; "&lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-101073"&gt;FXOS8700CQ - Bare metal example project&lt;/A&gt;"&amp;nbsp; and &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.63636302948px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;make a communications with &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;FXOS8700CQ on the my FRDM-K64F board based on I2C driver code for this project, and it work nice.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thanks for your help and wait for new tutorial for &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;FRDM-K64F (for example, I2S...)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12.7272720336914px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;Best regards, Oleg&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 07:05:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/How-to-use-LDD/m-p/389708#M3050</guid>
      <dc:creator>oleglavrukhin</dc:creator>
      <dc:date>2014-10-16T07:05:54Z</dc:date>
    </item>
  </channel>
</rss>

