<?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: Implementing UART driver for WiFi ESP Click Board on LPC55S28-EVK in MCUXpresso Config Tools</title>
    <link>https://community.nxp.com/t5/MCUXpresso-Config-Tools/Implementing-UART-driver-for-WiFi-ESP-Click-Board-on-LPC55S28/m-p/1997479#M1877</link>
    <description>&lt;P&gt;Hello, my name is Pavel, and I will be supporting your case, I recommend reviewed the example on the SDK.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Pavel_Hernandez_0-1732053124924.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/311318i0EDD0910F3E9D923/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Pavel_Hernandez_0-1732053124924.png" alt="Pavel_Hernandez_0-1732053124924.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Pavel_Hernandez_0-1732053124924.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
    <pubDate>Tue, 19 Nov 2024 21:52:25 GMT</pubDate>
    <dc:creator>Pavel_Hernandez</dc:creator>
    <dc:date>2024-11-19T21:52:25Z</dc:date>
    <item>
      <title>Implementing UART driver for WiFi ESP Click Board on LPC55S28-EVK</title>
      <link>https://community.nxp.com/t5/MCUXpresso-Config-Tools/Implementing-UART-driver-for-WiFi-ESP-Click-Board-on-LPC55S28/m-p/1996376#M1876</link>
      <description>&lt;P class=""&gt;I'm working on implementing a driver for the WiFi ESP Click Board on my LPC55S28-EVK development board using MCUXpresso IDE. The Click board features an ESP32 module and can connect to existing networks or create its own. While the manufacturer provides a library and SDK, my board isn't supported by their SDK.&lt;/P&gt;&lt;H2&gt;Hardware Setup:&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;LPC55S28-EVK development board&lt;/LI&gt;&lt;LI&gt;WiFi ESP Click Board connected via MikroBUS interface&lt;/LI&gt;&lt;LI&gt;Connections:&lt;UL&gt;&lt;LI&gt;UART TX/RX routed to mikroBUS header pins P24[3] (PIO0_13, pin 71) and P24[4] (PIO0_14, pin 72)&lt;/LI&gt;&lt;LI&gt;RST on PIO1_2 (pin 61)&lt;/LI&gt;&lt;LI&gt;CS on PIO0_26 (pin 60)&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Current Status:&lt;/H2&gt;&lt;P class=""&gt;I need to implement my own hardware abstraction layer (HAL) since I can't use the manufacturer's SDK. The original library uses functions like digital_out_high(), uart_write(), etc., which I need to implement using the MCUXpresso SDK's native functions.&lt;/P&gt;&lt;P class=""&gt;From my testing, i determine that the driver is working.&lt;/P&gt;&lt;H2&gt;Technical Details:&lt;/H2&gt;&lt;UL&gt;&lt;LI&gt;Using FLEXCOMM1/USART1 for UART communication&lt;/LI&gt;&lt;LI&gt;UART Configuration: 115200 baud, 8N1&lt;/LI&gt;&lt;LI&gt;Pin Configuration:&lt;UL&gt;&lt;LI&gt;RX: PIO0_13 configured as FC1_RXD_SDA_MOSI_DATA (ALT5)&lt;/LI&gt;&lt;LI&gt;TX: PIO0_14 configured as FC1_TXD_SCL_MISO_WS (ALT6)&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H2&gt;Questions:&lt;/H2&gt;&lt;P&gt;I have tested the communication and my driver by connecting my UART bridge (TX/RX) to P19[9] and P19[11]. The communications seems to work and i can see the AT commands being send. If I go into the pin config tool and route the RX/TX signals to the MikroBus Header (P24[3] &amp;amp; P24[4]) my UART bridge does not pick up the AT commands.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto vom 2024-11-18 13-20-28.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/311037iE7AAC167D14B13BA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bildschirmfoto vom 2024-11-18 13-20-28.png" alt="Bildschirmfoto vom 2024-11-18 13-20-28.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Bildschirmfoto vom 2024-11-18 13-20-28.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P class=""&gt;Any help or guidance would be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 12:23:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-Config-Tools/Implementing-UART-driver-for-WiFi-ESP-Click-Board-on-LPC55S28/m-p/1996376#M1876</guid>
      <dc:creator>SegFault0</dc:creator>
      <dc:date>2024-11-18T12:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing UART driver for WiFi ESP Click Board on LPC55S28-EVK</title>
      <link>https://community.nxp.com/t5/MCUXpresso-Config-Tools/Implementing-UART-driver-for-WiFi-ESP-Click-Board-on-LPC55S28/m-p/1997479#M1877</link>
      <description>&lt;P&gt;Hello, my name is Pavel, and I will be supporting your case, I recommend reviewed the example on the SDK.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Pavel_Hernandez_0-1732053124924.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/311318i0EDD0910F3E9D923/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Pavel_Hernandez_0-1732053124924.png" alt="Pavel_Hernandez_0-1732053124924.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Pavel_Hernandez_0-1732053124924.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 21:52:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-Config-Tools/Implementing-UART-driver-for-WiFi-ESP-Click-Board-on-LPC55S28/m-p/1997479#M1877</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-11-19T21:52:25Z</dc:date>
    </item>
  </channel>
</rss>

