<?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>Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/87810/compiling-issue-with-segger-embedded-studio-v6-30</link><description>Hi, 
 I am working with the nRF5SDK , nRF Thread SDKs long time. Recently i have update segger embedded studio to V 6.30 . previously i have used v5.68 
 1. 
 for nRF 5 SDK while build the ble_blinky example code i got an error __vfprintf.h: No such file</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 24 Sep 2024 13:45:07 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/87810/compiling-issue-with-segger-embedded-studio-v6-30" /><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/503594?ContentTypeID=1</link><pubDate>Tue, 24 Sep 2024 13:45:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c0739822-e8df-40bb-ba29-48cbb7d24886</guid><dc:creator>Steven</dc:creator><description>&lt;p&gt;Worked for me : )&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/500855?ContentTypeID=1</link><pubDate>Tue, 03 Sep 2024 01:18:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:593d1fbf-2ca9-4963-8e4c-95ad801f29c2</guid><dc:creator>Masashi Fujisawa</dc:creator><description>&lt;p&gt;Regarding TLS secion error, I can solve it by changing section order like this:&lt;/p&gt;
&lt;p&gt;Before:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="xml"&gt;&amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tdata_run&amp;quot; /&amp;gt;
&amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.bss&amp;quot; /&amp;gt;
&amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tbss&amp;quot; /&amp;gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;After:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="xml"&gt;&amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tdata_run&amp;quot; /&amp;gt;
&amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tbss&amp;quot; /&amp;gt;
&amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.bss&amp;quot; /&amp;gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Hope this help someone :D&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/390493?ContentTypeID=1</link><pubDate>Wed, 12 Oct 2022 15:09:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6221257f-0c94-445a-86c2-d2487f2cba9c</guid><dc:creator>jcc273</dc:creator><description>&lt;p&gt;I seemed to have solved this issue on my project.&amp;nbsp; First for the RTL_VERSION you MUST make sure the check comes AFTER the include for SEGGER_RTT.h:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#if !defined(RETARGET_ENABLED) || RETARGET_ENABLED == 0
#if (defined __SES_ARM) || (defined __CROSSWORKS_ARM)
  
#include &amp;quot;SEGGER_RTT.h&amp;quot;
#if !defined(__SEGGER_RTL_VERSION)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For the TLS issue you need to just open flash_placement.xml and move the tdata and tbss sections next to each other.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Original:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="xml"&gt;    &amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tdata_run&amp;quot; /&amp;gt;
    &amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.bss&amp;quot; /&amp;gt;
    &amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tbss&amp;quot; /&amp;gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;New:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="xml"&gt;    &amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tdata_run&amp;quot; /&amp;gt;
    &amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.tbss&amp;quot; /&amp;gt;
    &amp;lt;ProgramSection alignment=&amp;quot;4&amp;quot; load=&amp;quot;No&amp;quot; name=&amp;quot;.bss&amp;quot; /&amp;gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Then it should compile fine.&amp;nbsp; My project seems to be working just dandy after doing the above.&lt;/p&gt;
&lt;p&gt;-Jarrod&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/369925?ContentTypeID=1</link><pubDate>Mon, 30 May 2022 09:16:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ab10b2fa-ab51-4caf-b6c7-0b7103727da9</guid><dc:creator>Timor</dc:creator><description>&lt;p&gt;I didn&amp;#39;t get to the bottom of it. It requires building debug version as you mentioned. For now i just rolled back to the previous IDE i was working with.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/369919?ContentTypeID=1</link><pubDate>Mon, 30 May 2022 09:04:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:174137b7-572f-4236-9da7-876305e7ec08</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Thank you for the information.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As stated in the release notes, the older Segger version is the one that is tested for the SDK. Although I am not sure what the changes may be, I would check the included libraries. It happens that some IDEs change the sizes of default parameters, which causes the prebuilt libraries to fault. Did the log say anything about why it crashed? (you probably need to build the _debug bootloader project).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/369872?ContentTypeID=1</link><pubDate>Mon, 30 May 2022 05:57:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c2d99ac4-1eab-4caf-aa83-1075810a1ac8</guid><dc:creator>Timor</dc:creator><description>&lt;p&gt;I also see a problem with the bootloader on V6.30 (built from secure_bootloader_ble_s140_pca10100 SDK17.1). It compiles but doesn&amp;#39;t work (some error causes the device to reset).&lt;/p&gt;
&lt;p&gt;I rolled back to Segger v5.66, cleaned and rebuilt the project and it works.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367843?ContentTypeID=1</link><pubDate>Fri, 13 May 2022 12:26:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e9cce29b-a067-419e-8914-6372c9216d61</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;I just installed a license on version 5.34, and that worked just fine.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Without having tested myself, I think having several versions of SES may confuse the compiler. Files, such as the thumb_crt0s have a tendency to be picked from the wrong version. I don&amp;#39;t have enough knowledge on how this works to say how to change it or what this file does, but I suspect Segger will be able to give a better answer, and perhaps they know why the&amp;nbsp;&lt;span&gt;__SEGGER_RTL_VERSION doesn&amp;#39;t work, and perhaps they have another that is working.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367804?ContentTypeID=1</link><pubDate>Fri, 13 May 2022 10:36:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:065d8a6a-5168-4d2e-bad0-b176c60debc3</guid><dc:creator>pieterc</dc:creator><description>&lt;p&gt;Hi Edvin,&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve been watching this thread because I have the same problem with SES 6.30. I did manage to figure out that the project has to be explicitly configured to use RTT. Project Options &amp;gt; Library &amp;gt; Debug I/O &amp;gt; RTT. This is a new drop down option.&lt;/p&gt;
&lt;p&gt;I also got a &amp;quot;&amp;nbsp;TLS sections are not adjacent&amp;quot; linker error and this is where I threw in the towel. TLS = Thread Local Storage?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Pieter&lt;/p&gt;
&lt;p&gt;P.S. The SES license expires and it &amp;quot;forces&amp;quot; one to install the latest version. After renewing the license with the latest version then it is possible to run the old version again. This makes it tough to keep a stable code base supported.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367796?ContentTypeID=1</link><pubDate>Fri, 13 May 2022 10:15:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:623f1f9e-da19-4bbd-991d-4b16efdee309</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;I don&amp;#39;t have Segger embedded studio v6.30 installed, because it is not a Segger Embedded Studio version that is supported in any of our SDKs.&lt;/p&gt;
&lt;p&gt;If there was something that I could do to figure it out, I would have checked it out. You can exclude the file that includes the __vfprintf.h, and your project will compile, but if you want to use the macro that checks what version you have, we didn&amp;#39;t make that, and I don&amp;#39;t know how it works, and also I don&amp;#39;t have anyone in Nordic that I can check with, because we didn&amp;#39;t make it. So I think it is easier if you contact Segger and ask them why it is not working.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367679?ContentTypeID=1</link><pubDate>Thu, 12 May 2022 14:26:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4938604f-4280-4c35-99b5-657a955db8a7</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Did you got no error while adding&amp;nbsp;#if !defined(__SEGGER_RTL_VERSION)&lt;br /&gt; in SEGGER_RTT_Syscalls_SES.c?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367650?ContentTypeID=1</link><pubDate>Thu, 12 May 2022 13:32:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2eeb9e4e-c9f0-4e29-b19a-f6d436f44060</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Please try to contact Segger and ask them why the #if&amp;nbsp;is not working, as this information is directly from them:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://wiki.segger.com/Embedded_Studio_Library_IO"&gt;https://wiki.segger.com/Embedded_Studio_Library_IO&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We only officially support the Segger Embedded Version studio up until the one mentioned in the release notes from that specific SDK, which is SES 4.12 in this case.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367631?ContentTypeID=1</link><pubDate>Thu, 12 May 2022 13:01:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cf5ab1c4-eb85-4d1e-9ddd-0e3122d9121d</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Hi Edvin ,&lt;/p&gt;
&lt;p&gt;This is how i am getting in two different Segger version V5.68 and V6.30 for both nrf5 sdk 17.1.0 and thread v4.2.0&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. ble_blink example nrf 5 SDK&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;V5.68&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1652360126581v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;V6.30&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1652360169130v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. ble_uart_example nRF5SDK&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;v5.68&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1652360230083v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;V6.30&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1652360283449v4.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;note: for uart example code the error is different and it is showing the retarget.c&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regarding 2.&lt;/p&gt;
&lt;p&gt;nRF Thread 4.2.0&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;simple_coap_client example&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;V5.68&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1652360411377v5.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;V6.30&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1652360478260v6.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367587?ContentTypeID=1</link><pubDate>Thu, 12 May 2022 11:44:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:917398d9-9653-44ad-98f3-8c0ee2747764</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Hi Edvin, &lt;/p&gt;
&lt;p&gt;I have tried by changing SEGGER_RTT_Syscalls_SES.c as like you given but the error remains same even after i clean and refresh the project&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1652355867593v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;regarding 2.&lt;/p&gt;
&lt;p&gt;in segger version 5.68 it works fine only for the new version of segger , facing these issues&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367521?ContentTypeID=1</link><pubDate>Thu, 12 May 2022 06:55:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:425431ff-7c91-4e24-a438-ad59216dcc0d</guid><dc:creator>Edvin</dc:creator><description>[quote user=""]because i need to work this project in both older / newer version of segger embedded studio[/quote]
&lt;p&gt;Try changing the SEGGER_RTT_Syscalls_SES.c to something like this:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/SEGGER_5F00_RTT_5F00_Syscalls_5F00_SES.c"&gt;devzone.nordicsemi.com/.../SEGGER_5F00_RTT_5F00_Syscalls_5F00_SES.c&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Note that I only added line 68 and 265 in this file.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regarding 2:&lt;/p&gt;
&lt;p&gt;Does that also fail if you open the same project in the old version of SES, or only the new?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;br /&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367456?ContentTypeID=1</link><pubDate>Wed, 11 May 2022 14:38:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5013272-5f2d-415b-8cb7-b5f5b2a6745e</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;I can&amp;#39;t understand where to put this line &lt;em&gt;#if !defined(__SEGGER_RTL_VERSION) ... #endif&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;and more over the removing of file is work out only for non ble_uart example codes &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;for ble_uart example even removing this file also it has same error SEGGER_RTT_Syscalls_SES&amp;nbsp;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/em&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367455?ContentTypeID=1</link><pubDate>Wed, 11 May 2022 14:37:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:275871ba-daad-4214-afed-099c27a561c9</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Yes Edvin, I also mention here that only Ble SDK is working fine with that method not the THREAD SDK &lt;/p&gt;
&lt;p&gt;example of thread protocol is not working by removing the SEGGER_RTT_Syscalls_SES&amp;nbsp; in project file&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Compiling issue with SEGGER EMBEDDED STUDIO V6.30</title><link>https://devzone.nordicsemi.com/thread/367423?ContentTypeID=1</link><pubDate>Wed, 11 May 2022 12:59:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cd2a4bdd-296f-421b-9208-39050a313f5c</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I believe you already saw this thread, which discusses the upgrade to SES v6.2.0 and vfprintf() :&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/85405/nrf5-sdk-17-1-0-examples-is-not-compiling-in-latest-ses-6-20a"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/85405/nrf5-sdk-17-1-0-examples-is-not-compiling-in-latest-ses-6-20a&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I believe the same applies to SES v6.30.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>