<?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>connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/64737/connect-to-the-nrf52840-dk-with-the-stm32f103-development-board</link><description>Hi, recently I want to establish a connection between two development boards (STM32F103 + nRF52840-DK), that the STM32f103 board can create the data and send it to the nRF52840-DK, the openwsn has been ported to the nRF52840-DK. I want to combine development</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 21 Oct 2020 09:07:37 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/64737/connect-to-the-nrf52840-dk-with-the-stm32f103-development-board" /><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/276118?ContentTypeID=1</link><pubDate>Wed, 21 Oct 2020 09:07:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:84caf625-f730-41dc-bde9-682870127e9d</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;From the sdk_config you shared - which is the same as the UART example&amp;#39;s - it is apparent that you are only enabling UART0, and not UART1.&lt;br /&gt;This is the reason why you are not able to use UART1.&lt;br /&gt;Please define UART1_ENABLED to 1, and see if you then are able to create a UART1 instance in your application.&lt;/p&gt;
[quote user="kyh-ly"]And I also find I can not use two UARTs(UART1 and UART0) at the same time.[/quote]
&lt;p&gt;Please be advised that when you are using the legacy UART ( instead of nrfx_uarte ) the CPU will need to be involved in each transfer. Instead, I recommend that you use the nrfx_uarte driver, which uses the easyDMA feature.&lt;br /&gt;Which SDK version are you working with?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/276111?ContentTypeID=1</link><pubDate>Wed, 21 Oct 2020 08:56:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:03763801-3a54-4624-a065-8dac5157000e</guid><dc:creator>kyh-ly</dc:creator><description>&lt;p&gt;Can there have a complete using uart0 and uart1 transmission example? It&amp;#39;s difficult for me to work for it. And I also find I can not use two UARTs(UART1 and UART0) at the same time.By configurating APP_UART_DRIVER_INSTANCE 0/1, I can use UART0/UART1 respectively.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/276052?ContentTypeID=1</link><pubDate>Wed, 21 Oct 2020 01:54:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1efebcde-5768-40ae-a603-7b94f1e5f6d9</guid><dc:creator>kyh-ly</dc:creator><description>&lt;p&gt;Same as sdk_config.h provided in the UART example.&lt;/p&gt;
&lt;p&gt;//UARTE configure&lt;/p&gt;
&lt;p&gt;#ifndef NRFX_UARTE_ENABLED&lt;br /&gt;#define NRFX_UARTE_ENABLED 1&lt;br /&gt;#endif&lt;br /&gt;// &amp;lt;o&amp;gt; NRFX_UARTE0_ENABLED - Enable UARTE0 instance &lt;br /&gt;#ifndef NRFX_UARTE0_ENABLED&lt;br /&gt;#define NRFX_UARTE0_ENABLED 0&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;// &amp;lt;o&amp;gt; NRFX_UARTE1_ENABLED - Enable UARTE1 instance &lt;br /&gt;#ifndef NRFX_UARTE1_ENABLED&lt;br /&gt;#define NRFX_UARTE1_ENABLED 0&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;//NRFX_UART_ENABLED - nrfx_uart - UART peripheral driver&lt;/p&gt;
&lt;p&gt;#ifndef NRFX_UART_ENABLED&lt;br /&gt;#define NRFX_UART_ENABLED 1&lt;br /&gt;#endif&lt;br /&gt;// &amp;lt;o&amp;gt; NRFX_UART0_ENABLED - Enable UART0 instance &lt;br /&gt;#ifndef NRFX_UART0_ENABLED&lt;br /&gt;#define NRFX_UART0_ENABLED 0&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;// &amp;lt;e&amp;gt; UART_ENABLED - nrf_drv_uart - UART/UARTE peripheral driver - legacy layer&lt;br /&gt;//==========================================================&lt;br /&gt;#ifndef UART_ENABLED&lt;br /&gt;#define UART_ENABLED 1&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;// &amp;lt;e&amp;gt; UART0_ENABLED - Enable UART0 instance&lt;br /&gt;//==========================================================&lt;br /&gt;#ifndef UART0_ENABLED&lt;br /&gt;#define UART0_ENABLED 1&lt;br /&gt;#endif&lt;br /&gt;// &amp;lt;q&amp;gt; UART0_CONFIG_USE_EASY_DMA - Default setting for using EasyDMA&lt;/p&gt;
&lt;p&gt;#ifndef UART0_CONFIG_USE_EASY_DMA&lt;br /&gt;#define UART0_CONFIG_USE_EASY_DMA 1&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;// &amp;lt;/e&amp;gt;&lt;/p&gt;
&lt;p&gt;// &amp;lt;e&amp;gt; UART1_ENABLED - Enable UART1 instance&lt;br /&gt;//==========================================================&lt;br /&gt;#ifndef UART1_ENABLED&lt;br /&gt;#define UART1_ENABLED 0&lt;br /&gt;#endif&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275853?ContentTypeID=1</link><pubDate>Tue, 20 Oct 2020 10:39:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f992b944-3d00-47b6-a1eb-0b1b73eee60e</guid><dc:creator>Karl Ylvisaker</dc:creator><description>[quote user="kyh-ly"]I want to know how to specify the specific configuration of the UART1.[/quote]
&lt;p&gt;Depending on what you would like to configure, it is either done in sdk_config or during the initialization.&lt;/p&gt;
[quote user="kyh-ly"]I always configure the UART0 and the UART1 doesn&amp;#39;t work.Which files should I modify.[/quote]
&lt;p&gt;The UART instance is configured in your sdk_config file, and the global instance should be initialized at the beginning of your main file.&lt;br /&gt;What is your UART configurations in sdk_config?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275740?ContentTypeID=1</link><pubDate>Tue, 20 Oct 2020 02:55:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:78cecc30-76f7-4bf0-8043-cec5c93b2a45</guid><dc:creator>kyh-ly</dc:creator><description>&lt;p&gt;I want to know how to specify the specific configuration of the UART1. I always configure the UART0 and the UART1 doesn&amp;#39;t work.Which files should I modify.&lt;/p&gt;
&lt;p&gt;void uart_init(){&lt;/p&gt;
&lt;p&gt;const app_uart_comm_params_t comm_params =&lt;br /&gt; {&lt;br /&gt; SER_APP_RX_PIN,SER_APP_TX_PIN,&lt;br /&gt; SER_APP_RTS_PIN,SER_APP_CTS_PIN,&lt;br /&gt; /*RX_PIN_NUMBER,&lt;br /&gt; TX_PIN_NUMBER,&lt;br /&gt; RTS_PIN_NUMBER,&lt;br /&gt; CTS_PIN_NUMBER,*/&lt;br /&gt; UART_HWFC,&lt;br /&gt; false,&lt;br /&gt;#if defined (UART_PRESENT)&lt;br /&gt; NRF_UART_BAUDRATE_115200&lt;br /&gt;#else&lt;br /&gt; NRF_UARTE_BAUDRATE_115200&lt;br /&gt;#endif&lt;br /&gt; };&lt;/p&gt;
&lt;p&gt;APP_UART_FIFO_INIT(&amp;amp;comm_params,&lt;br /&gt; UART_RX_BUF_SIZE,&lt;br /&gt; UART_TX_BUF_SIZE,&lt;br /&gt; uart_error_handle,&lt;br /&gt; APP_IRQ_PRIORITY_LOWEST,&lt;br /&gt; err_code);&lt;/p&gt;
&lt;p&gt;APP_ERROR_CHECK(err_code);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275633?ContentTypeID=1</link><pubDate>Mon, 19 Oct 2020 12:49:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3fdba0c8-6ed1-4bd5-8738-6d6c735ff37d</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello again,&lt;br /&gt;&lt;br /&gt;Yes, this is an excellent idea. The nRF5 SDK&amp;#39;s examples demonstrates a lot of the features available to the nRF device series, and how you may go about using them. I recommend starting with a non-BLE example ( such as the UART example I linked in my previous reply ), to get familiar with the peripheral, and then moving on to one of the examples that include BLE ( Such as the ble_app_uart examples ).&lt;br /&gt;&lt;br /&gt;Please do not hesitate to open a new ticket on the forum if you should encounter any issues or questions!&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275625?ContentTypeID=1</link><pubDate>Mon, 19 Oct 2020 12:39:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7059d953-bc30-43de-8442-b734df26f971</guid><dc:creator>kyh-ly</dc:creator><description>&lt;p&gt;Thank you, The first thing I must to do is familiar with the SDK and the hardware.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275613?ContentTypeID=1</link><pubDate>Mon, 19 Oct 2020 12:21:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2deadd84-0bb3-48f1-a277-2f1672928d47</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello again,&lt;/p&gt;
[quote user="kyh-ly"]I want to use the UART1 to transmit the data from my board, and I can not find any useful instructions on how to configure UART1.[/quote]
&lt;p&gt;Have you seen &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.2/uart_example.html"&gt;the UART peripheral hardware example from the SDK&lt;/a&gt;?&amp;nbsp;&lt;br /&gt;It demonstrates how you could use the UART peripheral, and how to configure which UART instance you will be using in the sdk_config file.&lt;/p&gt;
[quote user="kyh-ly"]below is another people code that configuring the UART0 by directly accessing the register(I can not confirm if right)[/quote]
&lt;p&gt;Where did you find this code? I would recommend that you make use of the supplied UART drivers, or app uart library, rather than working with the peripheral&amp;#39;s registers directly. Especially if you are not comfortable with working at the register level.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275585?ContentTypeID=1</link><pubDate>Mon, 19 Oct 2020 11:36:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8e5197a2-9782-4972-b7e3-6f587196b7f0</guid><dc:creator>kyh-ly</dc:creator><description>&lt;p&gt;I want to use the UART1 to transmit the data from my board, and I can not find any useful instructions on how to configure UART1. below is another people code that configuring the UART0 by directly accessing the register(I can not confirm if right). I also want to configure uart1 using the register.&lt;/p&gt;
&lt;p&gt;void uart_init(){&lt;/p&gt;
&lt;p&gt;NRF_P0-&amp;gt;OUTSET = 1 &amp;lt;&amp;lt; UART_TX_PIN;//Set UART pin number bits in GPIO port&lt;br /&gt; &lt;br /&gt; // tx pin configured as output&lt;br /&gt; NRF_P0-&amp;gt;PIN_CNF[UART_TX_PIN] = \&lt;br /&gt; ((uint32_t)GPIO_PIN_CNF_DIR_Output &amp;lt;&amp;lt; GPIO_PIN_CNF_DIR_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_INPUT_Disconnect &amp;lt;&amp;lt; GPIO_PIN_CNF_INPUT_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_PULL_Disabled &amp;lt;&amp;lt; GPIO_PIN_CNF_PULL_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_DRIVE_S0S1 &amp;lt;&amp;lt; GPIO_PIN_CNF_DRIVE_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled &amp;lt;&amp;lt; GPIO_PIN_CNF_SENSE_Pos);&lt;br /&gt; &lt;br /&gt; // rx pin configured as input // 执行的就该函数是 nrf_gpio_cfg_input()--&amp;gt;nrf_gpio_cfg&lt;br /&gt; NRF_P0-&amp;gt;PIN_CNF[UART_RX_PIN] = \&lt;br /&gt; ((uint32_t)GPIO_PIN_CNF_DIR_Input &amp;lt;&amp;lt; GPIO_PIN_CNF_DIR_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_INPUT_Connect &amp;lt;&amp;lt; GPIO_PIN_CNF_INPUT_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_PULL_Disabled &amp;lt;&amp;lt; GPIO_PIN_CNF_PULL_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_DRIVE_S0S1 &amp;lt;&amp;lt; GPIO_PIN_CNF_DRIVE_Pos)&lt;br /&gt; | ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled &amp;lt;&amp;lt; GPIO_PIN_CNF_SENSE_Pos);&lt;/p&gt;
&lt;p&gt;// configure uart&lt;br /&gt; &lt;br /&gt; NRF_UART0-&amp;gt;BAUDRATE = (uint32_t)(UART_BAUDRATE_115200);&lt;br /&gt; NRF_UART0-&amp;gt;CONFIG = &lt;br /&gt; (uint32_t)(UART_CONFIG_PARITY &amp;lt;&amp;lt; UART_CONFIG_PARITY_POS)&lt;br /&gt; | (uint32_t)(UART_CONFIG_HWFC &amp;lt;&amp;lt; UART_CONFIG_HWFC_POS);&lt;br /&gt; NRF_UART0-&amp;gt;PSEL.RXD = (uint32_t)UART_RX_PIN;&lt;br /&gt; NRF_UART0-&amp;gt;PSEL.TXD = (uint32_t)UART_TX_PIN;&lt;/p&gt;
&lt;p&gt;// enable UART rx done ready and tx done ready interrupts&lt;/p&gt;
&lt;p&gt;NRF_UART0-&amp;gt;INTENSET = &lt;br /&gt; (uint32_t)(1&amp;lt;&amp;lt;UART_INTEN_RXDRDY_POS)&lt;br /&gt; | (uint32_t)(1&amp;lt;&amp;lt;UART_INTEN_TXDRDY_POS);&lt;/p&gt;
&lt;p&gt;// set priority and enable interrupt in NVIC&lt;br /&gt; NVIC_SetPriority(UARTE0_UART0_IRQn, NRFX_UART_DEFAULT_CONFIG_IRQ_PRIORITY);&lt;/p&gt;
&lt;p&gt;NVIC-&amp;gt;ISER[((uint32_t)UARTE0_UART0_IRQn)&amp;gt;&amp;gt;5] = &lt;br /&gt; ((uint32_t)1) &amp;lt;&amp;lt; ( ((uint32_t)UARTE0_UART0_IRQn) &amp;amp; 0x1f);&lt;/p&gt;
&lt;p&gt;// enable uart&lt;br /&gt; NRF_UART0-&amp;gt;ENABLE = (uint32_t)UART_ENABLE_ENABLE_Enabled;&lt;/p&gt;
&lt;p&gt;// start to tx and rx&lt;br /&gt; NRF_UART0-&amp;gt;TASKS_STARTTX = (uint32_t)1;&lt;br /&gt; NRF_UART0-&amp;gt;TASKS_STARTRX = (uint32_t)1;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275542?ContentTypeID=1</link><pubDate>Mon, 19 Oct 2020 09:25:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0f7407a2-34ae-465c-af4c-9d4f2dc2dda6</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
[quote user="kyh-ly"]In the file nrf_gpio.h, I don&amp;#39;t find the definition of UART1, can I use the UARTE1 as UART?[/quote]
&lt;p&gt;I do not understand your question here - are you looking for the *_UART* definitions? If so, they are located in your sdk_config.h file.&lt;br /&gt;I would not expect to find any UART related defines or functions in the&amp;nbsp;&lt;em&gt;nrf_gpio.h&amp;nbsp;&lt;/em&gt;file, since this is the &lt;strong&gt;&lt;em&gt;HAL for the GPIO peripheral&lt;/em&gt;&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;Please do not hesitate to ask if anything still should be unclear, or if you encounter any other issues or questions!&lt;br /&gt;&lt;br /&gt;&lt;em&gt;&lt;/em&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275355?ContentTypeID=1</link><pubDate>Fri, 16 Oct 2020 12:32:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce6a2333-6314-47d9-b0c7-c0cfb5f2ecf1</guid><dc:creator>kyh-ly</dc:creator><description>&lt;p&gt;In the file nrf_gpio.h, I don&amp;#39;t find the definition of UART1, can I use the UARTE1 as UART?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/275271?ContentTypeID=1</link><pubDate>Fri, 16 Oct 2020 08:01:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:951c93c4-cb0d-4678-bce3-c8c42a1f1f63</guid><dc:creator>kyh-ly</dc:creator><description>&lt;p&gt;Thanks, I have found the definition of the serialization_application_board. If I can use this port to implement UART communication?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/264316?ContentTypeID=1</link><pubDate>Wed, 12 Aug 2020 15:00:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e34f8b5a-0285-4ca2-98ac-1c40523ffc8a</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;It is as Nguyen said: &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fkeyfeatures_html5.html"&gt;the nRF52840 does have two UART instances&lt;/a&gt;. You can map the UART to any of the available pins on the nRF52840 DK, but please keep the &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fpin.html"&gt;Pin assignment&lt;/a&gt;&amp;nbsp;in mind, when choosing pins. If you intend to use the UART then it will be useful to take a look at the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/uart_example.html"&gt;UART Example from the SDK&lt;/a&gt;, which demonstrates its usage.&lt;br /&gt;You may also pursue using either SPI or TWI as well. Examples that demonstrate both &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/nrfx_spim_example.html"&gt;SPI&lt;/a&gt; and &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/twi_sensor_example.html"&gt;TWI&lt;/a&gt;&amp;nbsp;setup and usage can be seen in the SDK.&lt;br /&gt;&lt;br /&gt;I recommend that you start with one of the examples that demonstrates the functionality closest to the one you would like to implement, and then work your way from there.&lt;br /&gt;&lt;br /&gt;Please do not hesitate to ask if anything should be unclear, or in the case that you encounter some issues or questions!&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: connect to the nRF52840-DK with the STM32F103 development board</title><link>https://devzone.nordicsemi.com/thread/264180?ContentTypeID=1</link><pubDate>Wed, 12 Aug 2020 08:24:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3e6bf35f-a8f3-4733-8d2d-c689c7a4196c</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;the nRF52840 has 2 UART. The reason why you don&amp;#39;t see a specific pin for it is because any gpio pin can be used for it. &amp;nbsp;You see only 1 uart pin on the DK because it is being used and connected to the onboard jlink. The 2 uart is not used therefore not mapped anywhere.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>