<?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>Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/121351/issue-on-sx128x-using-nrf-connect-sdk-3-0-0</link><description>Hello everyone, 
 I&amp;#39;m developing an application using the SX128x radio with the LoRaWAN Basic Modem. 
 The project runs successfully on a custom board based on the nRF5340 using nRF Connect SDK v2.9.0. 
 Now, I&amp;#39;m migrating to use nRF Connect SDK v3.0</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 13 May 2025 07:22:25 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/121351/issue-on-sx128x-using-nrf-connect-sdk-3-0-0" /><item><title>RE: Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/thread/535020?ContentTypeID=1</link><pubDate>Tue, 13 May 2025 07:22:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f4fb7661-9e33-4c9a-8437-6278cda3320c</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Out of curriosty is there anything else that is not working in your application? For I don&amp;#39;t see anything that stands out.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;CONFIG_SOC_ENABLE_LFXO=n has been deprecated in NCS 3.0 and you should set this in the devicetree like you see &lt;a href="https://docs.nordicsemi.com/bundle/ncs-3.0.0/page/zephyr/releases/migration-guide-4.0.html#clock_control"&gt;here&lt;/a&gt;&amp;nbsp;and &lt;a href="https://github.com/nrfconnect/sdk-zephyr/blob/12907948f027e64dacd95d0dfff26270bf08f6b5/boards/nordic/nrf5340dk/nrf5340_cpuapp_common.dtsi#L68"&gt;here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/thread/534927?ContentTypeID=1</link><pubDate>Mon, 12 May 2025 14:15:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b4d9dd07-17cc-43f6-a5f5-9d6ca32d02c4</guid><dc:creator>Luis Santos</dc:creator><description>&lt;p&gt;haha ok.&lt;br /&gt;&lt;br /&gt;my custom _defconfig:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;# SPDX-License-Identifier: Apache-2.0

# Enable MPU
CONFIG_ARM_MPU=y

# Enable hardware stack protection
CONFIG_HW_STACK_PROTECTION=y

# Enable TrustZone-M
CONFIG_ARM_TRUSTZONE_M=y

# enable GPIO
CONFIG_GPIO=y
CONFIG_SPI=y

# Enable uart driver
CONFIG_SERIAL=y

# enable console
CONFIG_CONSOLE=y
CONFIG_UART_CONSOLE=y

# Clock
CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y
CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH=n
CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL=n
CONFIG_SOC_ENABLE_LFXO=n
CONFIG_NORDIC_QSPI_NOR=n

# NFC
CONFIG_NFCT_PINS_AS_GPIOS=y

# BMI270
CONFIG_SENSOR=y
CONFIG_BMI270=y
CONFIG_I2C=y
CONFIG_LOG=y
CONFIG_SENSOR_LOG_LEVEL_DBG=y
CONFIG_I2C_LOG_LEVEL_DBG=y
CONFIG_RTC_LOG_LEVEL_DBG=y&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;my prj.conf:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;# Enable logging and RTT DEBUG output
CONFIG_LOG=y
CONFIG_LOG_MODE_IMMEDIATE=y
CONFIG_USE_SEGGER_RTT=y
CONFIG_LOG_BACKEND_RTT=y
CONFIG_LOG_PRINTK=y
CONFIG_LOG_MODE_DEFERRED=n
CONFIG_SEGGER_RTT_BUFFER_SIZE_UP=64
CONFIG_LOG_BUFFER_SIZE=4096
CONFIG_LOG_BACKEND_RTT_BUFFER_SIZE=4096
CONFIG_LOG_PROCESS_THREAD_STACK_SIZE=4096

# LVGL
CONFIG_MAIN_STACK_SIZE=4096
CONFIG_LV_Z_MEM_POOL_SIZE=40000
CONFIG_DISPLAY=y
CONFIG_ST7789V=y
CONFIG_ST7789V_RGB565=y
CONFIG_LVGL=y
# CONFIG_LV_CONF_MINIMAL=y
# CONFIG_LV_USE_ARC=y
# CONFIG_LV_USE_BAR=y
# CONFIG_LV_USE_LABEL=y
# CONFIG_LV_USE_IMG=y
# CONFIG_LV_USE_TEXTAREA=y
# CONFIG_LV_USE_THEME_DEFAULT=y

# Font
CONFIG_LV_FONT_MONTSERRAT_18=y
CONFIG_LV_FONT_MONTSERRAT_20=y
CONFIG_LV_FONT_MONTSERRAT_24=y
CONFIG_LV_FONT_MONTSERRAT_30=y
CONFIG_LV_FONT_MONTSERRAT_48=y
CONFIG_LV_COLOR_DEPTH_16=y
CONFIG_LV_COLOR_16_SWAP=y

# Debug
CONFIG_DEBUG_THREAD_INFO=y
CONFIG_DEBUG=y
CONFIG_DEBUG_OPTIMIZATIONS=y

# MIPI
CONFIG_MIPI_DBI=y

CONFIG_PWM=y
CONFIG_PWM_NRFX=y
CONFIG_LED=y
CONFIG_GPIO=y
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096

# SPI
CONFIG_SPI=y

# RTC
CONFIG_RTC=y
CONFIG_RTC_RV8263=y
CONFIG_RTC_ALARM=y
CONFIG_RTC_UPDATE=y
CONFIG_RTC_CALIBRATION=y
CONFIG_RTC_LOG_LEVEL_DBG=n
CONFIG_COUNTER=y
CONFIG_RTC_INIT_PRIORITY=90

# RNG
CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR=y
CONFIG_TEST_RANDOM_GENERATOR=y
CONFIG_ENTROPY_GENERATOR=y
CONFIG_ENTROPY_NRF5_RNG=y
CONFIG_ENTROPY_NRF5_BIAS_CORRECTION=y

# Buttons
CONFIG_GPIO=y
CONFIG_CAF_BUTTONS=y

# System
CONFIG_REBOOT=y
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
CONFIG_THREAD_STACK_INFO=y
CONFIG_THREAD_MONITOR=y
CONFIG_THREAD_NAME=y

# Watchdog
CONFIG_WATCHDOG=y
CONFIG_WDT_NRFX=y

# BMI270
CONFIG_I2C=y
CONFIG_SENSOR=y
CONFIG_BMI270=y

# ADC
CONFIG_ADC=y
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;My custom .pinctrl and custom.dts was on first message.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/thread/534925?ContentTypeID=1</link><pubDate>Mon, 12 May 2025 14:09:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:72bf2f06-13e0-45bc-8476-119146822c42</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Haha no worries. I would still like the overlay and the prj.conf.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can for the moment ignore everything I have written regarding pins as it would not be relevant for the 5340&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/thread/534901?ContentTypeID=1</link><pubDate>Mon, 12 May 2025 12:50:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c3536e90-d746-49c4-9054-1eb1586f3ba8</guid><dc:creator>Luis Santos</dc:creator><description>&lt;p&gt;I apologize for the confusion. Although I plan to use the nRF54L15 in my future project, right now I&amp;rsquo;m adapting my existing code&amp;mdash;originally developed for a custom nRF5340 board running nRF Connect SDK 2.9.0&amp;mdash;to nRF Connect SDK 3.0.0. While the application works perfectly under SDK 2.9.0, after upgrading to SDK 3.0.0 I no longer see any SPI0 activity on the oscilloscope.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/thread/534886?ContentTypeID=1</link><pubDate>Mon, 12 May 2025 12:30:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a32c21ba-a20a-48ce-af4e-e8266449c31e</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;My mistake. I was a bit to haste when looking at your pins.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Remember SPIM should use a dedicated clock pin pr &lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/chapters/pin.html#ariaid-title3"&gt;Pin assignments&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I would like to see your overlay for the 54L15 and your prj.conf&lt;/p&gt;
&lt;p&gt;The atteched .dts shows has includes to the 5340 so I can&amp;#39;t be sure regarding that file.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also there is no spi0 on the 54l15. Are you refeering to SPIM00?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/thread/534878?ContentTypeID=1</link><pubDate>Mon, 12 May 2025 12:14:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:909cfbee-8f4d-441a-b4eb-0438d0672fbe</guid><dc:creator>Luis Santos</dc:creator><description>&lt;p&gt;No. I&amp;#39;m using a custom board with SPI on:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;spi0_sx128x_default:&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;spi0_sx128x_default&lt;/span&gt;&lt;span&gt; {&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;group1&lt;/span&gt;&lt;span&gt; {&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; psels &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &amp;lt;&lt;/span&gt;&lt;span&gt;NRF_PSEL&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;SPIM_SCK&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;22&lt;/span&gt;&lt;span&gt;)&amp;gt;,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &amp;lt;&lt;/span&gt;&lt;span&gt;NRF_PSEL&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;SPIM_MOSI&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;)&amp;gt;,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &amp;lt;&lt;/span&gt;&lt;span&gt;NRF_PSEL&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;SPIM_MISO&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;span&gt;)&amp;gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; bias-pull-down;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; };&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; };&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;spi0_sx128x_sleep:&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;spi0_sx128x_sleep&lt;/span&gt;&lt;span&gt; {&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;group1&lt;/span&gt;&lt;span&gt; {&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; psels &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &amp;lt;&lt;/span&gt;&lt;span&gt;NRF_PSEL&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;SPIM_SCK&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;22&lt;/span&gt;&lt;span&gt;)&amp;gt;,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &amp;lt;&lt;/span&gt;&lt;span&gt;NRF_PSEL&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;SPIM_MOSI&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;)&amp;gt;,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &amp;lt;&lt;/span&gt;&lt;span&gt;NRF_PSEL&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;SPIM_MISO&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;0&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;4&lt;/span&gt;&lt;span&gt;)&amp;gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; low-power-enable;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; };&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; };&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;I already using this macro&amp;nbsp;CONFIG_NFCT_PINS_AS_GPIOS&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue on SX128X using nRF Connect SDK 3.0.0</title><link>https://devzone.nordicsemi.com/thread/534850?ContentTypeID=1</link><pubDate>Mon, 12 May 2025 11:16:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:076a46a1-3d8b-40b3-9233-1d6751af9d2c</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Are you using a DK? If so then you need to&amp;nbsp;set the config option&amp;nbsp;&lt;span&gt;CONFIG_NFCT_PINS_AS_GPIOS=Y as the pins are used for NFC on the DK&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Regards&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Runar&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>