<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>ESP32 configuration on Nordic connect sdk</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/106562/esp32-configuration-on-nordic-connect-sdk</link><description>I am trying sample application of ADC in Nordic connect sdk, an overlay file for esp32s3 is already present in it but when i select esp32s3-devkitm during build configuration it through some device tree error, could you please tell me which configuration</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 14 Dec 2023 14:55:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/106562/esp32-configuration-on-nordic-connect-sdk" /><item><title>RE: ESP32 configuration on Nordic connect sdk</title><link>https://devzone.nordicsemi.com/thread/460401?ContentTypeID=1</link><pubDate>Thu, 14 Dec 2023 14:55:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:07592234-88c3-47bc-9724-bdf189b04026</guid><dc:creator>Kazi Afroza Sultana</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I have talked our team. We can not help in this issue as Expressif does not use our MCU. You can ask expressif or zephyr about the ESP32 integration.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ESP32 configuration on Nordic connect sdk</title><link>https://devzone.nordicsemi.com/thread/460111?ContentTypeID=1</link><pubDate>Wed, 13 Dec 2023 11:11:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:abf8c285-55f7-47f9-9a94-d0071d4c99af</guid><dc:creator>fatimatayyab71</dc:creator><description>&lt;p&gt;I unable to identify the issue...because apparently everything seems fine....can you please check this code...&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;/*
 * Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

#include &amp;lt;zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h&amp;gt;
#include &amp;lt;dt-bindings/pinctrl/esp32s3-pinctrl.h&amp;gt;
#include &amp;lt;zephyr/dt-bindings/pinctrl/esp32s3-gpio-sigmap.h&amp;gt;

&amp;amp;pinctrl {
	uart0_default: uart0_default {
		group1 {
			pinmux = &amp;lt;UART0_TX_GPIO43&amp;gt;;
			output-high;
		};
		group2 {
			pinmux = &amp;lt;UART0_RX_GPIO44&amp;gt;;
			bias-pull-up;
		};
	};

	i2c0_default: i2c0_default {
		group1 {
			pinmux = &amp;lt;I2C0_SDA_GPIO1&amp;gt;,
				 &amp;lt;I2C0_SCL_GPIO2&amp;gt;;
			bias-pull-up;
			drive-open-drain;
			output-high;
		};
	};

	i2c1_default: i2c1_default {
		group1 {
			pinmux = &amp;lt;I2C1_SDA_GPIO4&amp;gt;,
				 &amp;lt;I2C1_SCL_GPIO5&amp;gt;;
			bias-pull-up;
			drive-open-drain;
			output-high;
		};
	};

	spim2_default: spim2_default {
		group1 {
			pinmux = &amp;lt;SPIM2_MISO_GPIO13&amp;gt;,
				 &amp;lt;SPIM2_SCLK_GPIO12&amp;gt;,
				 &amp;lt;SPIM2_CSEL_GPIO10&amp;gt;;
		};
		group2 {
			pinmux = &amp;lt;SPIM2_MOSI_GPIO11&amp;gt;;
			output-low;
		};
	};

	spim3_default: spim3_default {
		group1 {
			pinmux = &amp;lt;SPIM3_MISO_GPIO37&amp;gt;,
				 &amp;lt;SPIM3_SCLK_GPIO36&amp;gt;,
				 &amp;lt;SPIM3_CSEL_GPIO38&amp;gt;;
		};
		group2 {
			pinmux = &amp;lt;SPIM3_MOSI_GPIO39&amp;gt;;
			output-low;
		};
	};

	twai_default: twai_default {
		group1 {
			pinmux = &amp;lt;TWAI_TX_GPIO5&amp;gt;,
				&amp;lt;TWAI_RX_GPIO6&amp;gt;;
		};
	};
};
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ESP32 configuration on Nordic connect sdk</title><link>https://devzone.nordicsemi.com/thread/460098?ContentTypeID=1</link><pubDate>Wed, 13 Dec 2023 10:28:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cdd54eb4-6925-4ff4-8f87-e1ca726f9119</guid><dc:creator>Kazi Afroza Sultana</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I can see a device tree error in this /zephyr/boards/xtensa/esp32s3_devkitm/esp32s3_devkitm-pinctrl.dtsi file.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1702462563960v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Can you please check the number 14 line of this file if there is any&amp;nbsp;syntex error?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>