<?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>Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/1072/working-workspace-for-nan-29-v1-1</link><description>I am trying to use Eclipse+GCC for my projects. I found a similar issue as stated in the following post: 
 devzone.nordicsemi.com/.../nan-29-nrf51-sdk-no-project-files 
 I have downloaded the blinky_example, but my workspace did not have the common</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 06 Dec 2013 14:24:50 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/1072/working-workspace-for-nan-29-v1-1" /><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5069?ContentTypeID=1</link><pubDate>Fri, 06 Dec 2013 14:24:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8b27f754-0230-4b8f-adc8-16760d65aeb7</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;Yes, you need to include all the source files that should be part of the build in the project Makefile. Based on the output above, it seems like you have at least forgotten app_timer.c and app_sched.c. Please note that it isn&amp;#39;t actually necessary to supply the path for them, just the file name is sufficient, if the source code paths have been set correctly.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5068?ContentTypeID=1</link><pubDate>Fri, 06 Dec 2013 14:21:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:07e0aff2-978a-4a50-83d1-79811ba7f887</guid><dc:creator>Ignacio Lopez</dc:creator><description>&lt;p&gt;Thanks Ole. I have included the paths the makefile based on your sample project as follows:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
INCLUDEPATHS += -I&amp;quot;../&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include/app_common&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include/ble&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include/ble/ble_services&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include/ble/softdevice&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include/gcc&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include/hal&amp;quot;
INCLUDEPATHS += -I&amp;quot;$(SDK_PATH)Include/modules&amp;quot;

&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;
C_SOURCE_PATHS += ../ $(SDK_SOURCE_PATH) $(TEMPLATE_PATH) $(wildcard $(SDK_SOURCE_PATH)*/)  $(wildcard $(SDK_SOURCE_PATH)app_common/*/) $(wildcard $(SDK_SOURCE_PATH)ble/*/) $(wildcard $(SDK_SOURCE_PATH)ble/ble_services/*/) $(wildcard $(SDK_SOURCE_PATH)ble/softdevice/*/) $(wildcard $(SDK_SOURCE_PATH)gcc/*/) $(wildcard $(SDK_SOURCE_PATH)hal/*/) $(wildcard $(SDK_SOURCE_PATH)modules/*/)

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;But I still have an issue with linking at the moment  of compliling:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
13:16:11 **** Incremental Build of configuration Default for project ble_app_hids_mouse ****
make all 
rm -rf _build
mkdir _build
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -mcpu=cortex-m0 -mthumb -mabi=aapcs -DNRF51 -DBOARD_NRF6310 -DNRF51822_QFAA_CA --std=gnu99 -Wall -mfloat-abi=soft -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/app_common&amp;quot; -I&amp;quot;../../../../../Include/ble&amp;quot; -I&amp;quot;../../../../../Include/ble/ble_services&amp;quot; -I&amp;quot;../../../../../Include/ble/softdevice&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/hal&amp;quot; -I&amp;quot;../../../../../Include/modules&amp;quot; -M ../main.c -MF &amp;quot;_build/main.d&amp;quot; -MT _build/main.o
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -mcpu=cortex-m0 -mthumb -mabi=aapcs -DNRF51 -DBOARD_NRF6310 -DNRF51822_QFAA_CA --std=gnu99 -Wall -mfloat-abi=soft -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/app_common&amp;quot; -I&amp;quot;../../../../../Include/ble&amp;quot; -I&amp;quot;../../../../../Include/ble/ble_services&amp;quot; -I&amp;quot;../../../../../Include/ble/softdevice&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/hal&amp;quot; -I&amp;quot;../../../../../Include/modules&amp;quot; -c -o _build/main.o ../main.c
../main.c: In function &amp;#39;buffer_init&amp;#39;:
../main.c:356:14: warning: variable &amp;#39;err_code&amp;#39; set but not used [-Wunused-but-set-variable]
../main.c: In function &amp;#39;buffer_events&amp;#39;:
../main.c:446:11: warning: variable &amp;#39;err_code&amp;#39; set but not used [-Wunused-but-set-variable]
../main.c: In function &amp;#39;modules_init&amp;#39;:
../main.c:487:26: warning: variable &amp;#39;err_code&amp;#39; set but not used [-Wunused-but-set-variable]
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -mcpu=cortex-m0 -mthumb -mabi=aapcs -DNRF51 -DBOARD_NRF6310 -DNRF51822_QFAA_CA --std=gnu99 -Wall -mfloat-abi=soft -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/app_common&amp;quot; -I&amp;quot;../../../../../Include/ble&amp;quot; -I&amp;quot;../../../../../Include/ble/ble_services&amp;quot; -I&amp;quot;../../../../../Include/ble/softdevice&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/hal&amp;quot; -I&amp;quot;../../../../../Include/modules&amp;quot; -M ../../../../..//Source/nrf_delay/nrf_delay.c -MF &amp;quot;_build/nrf_delay.d&amp;quot; -MT _build/nrf_delay.o
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -mcpu=cortex-m0 -mthumb -mabi=aapcs -DNRF51 -DBOARD_NRF6310 -DNRF51822_QFAA_CA --std=gnu99 -Wall -mfloat-abi=soft -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/app_common&amp;quot; -I&amp;quot;../../../../../Include/ble&amp;quot; -I&amp;quot;../../../../../Include/ble/ble_services&amp;quot; -I&amp;quot;../../../../../Include/ble/softdevice&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/hal&amp;quot; -I&amp;quot;../../../../../Include/modules&amp;quot; -c -o _build/nrf_delay.o ../../../../..//Source/nrf_delay/nrf_delay.c
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -mcpu=cortex-m0 -mthumb -mabi=aapcs -DNRF51 -DBOARD_NRF6310 -DNRF51822_QFAA_CA --std=gnu99 -Wall -mfloat-abi=soft -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/app_common&amp;quot; -I&amp;quot;../../../../../Include/ble&amp;quot; -I&amp;quot;../../../../../Include/ble/ble_services&amp;quot; -I&amp;quot;../../../../../Include/ble/softdevice&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/hal&amp;quot; -I&amp;quot;../../../../../Include/modules&amp;quot; -M ../../../../..//Source/templates/system_nrf51.c -MF &amp;quot;_build/system_nrf51.d&amp;quot; -MT _build/system_nrf51.o
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -mcpu=cortex-m0 -mthumb -mabi=aapcs -DNRF51 -DBOARD_NRF6310 -DNRF51822_QFAA_CA --std=gnu99 -Wall -mfloat-abi=soft -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/app_common&amp;quot; -I&amp;quot;../../../../../Include/ble&amp;quot; -I&amp;quot;../../../../../Include/ble/ble_services&amp;quot; -I&amp;quot;../../../../../Include/ble/softdevice&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/hal&amp;quot; -I&amp;quot;../../../../../Include/modules&amp;quot; -c -o _build/system_nrf51.o ../../../../..//Source/templates/system_nrf51.c
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -x assembler-with-cpp -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/app_common&amp;quot; -I&amp;quot;../../../../../Include/ble&amp;quot; -I&amp;quot;../../../../../Include/ble/ble_services&amp;quot; -I&amp;quot;../../../../../Include/ble/softdevice&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/hal&amp;quot; -I&amp;quot;../../../../../Include/modules&amp;quot; -c -o _build/gcc_startup_nrf51.o ../../../../..//Source//templates/gcc/gcc_startup_nrf51.s
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/bin/arm-none-eabi-gcc&amp;quot; -L&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/arm-none-eabi/lib/armv6-m&amp;quot; -L&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3/lib/gcc/arm-none-eabi/4.7.4/armv6-m&amp;quot; -Xlinker -Map=_build/ble_app_hids_mouse_xxaa.map -mcpu=cortex-m0 -mthumb -mabi=aapcs -L ../../../../..//Source//templates/gcc/ -Tgcc_nrf51_blank_xxaa.ld  _build/main.o _build/nrf_delay.o _build/system_nrf51.o _build/gcc_startup_nrf51.o  -o _build/ble_app_hids_mouse_xxaa.out
_build/main.o: In function `reset&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:213: undefined reference to `ble_bondmngr_bonded_masters_delete&amp;#39;
_build/main.o: In function `app_captouch_handler&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:232: undefined reference to `app_captouch_sheduler_callback&amp;#39;
_build/main.o: In function `app_captouch_event_handler&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:246: undefined reference to `m_keyboard_new_packet&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:255: undefined reference to `m_mouse_new_packet&amp;#39;
_build/main.o: In function `ble_radio_notification_evt&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:333: undefined reference to `ble_flash_on_radio_active_evt&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:334: undefined reference to `app_captouch_on_radio_active_evt&amp;#39;
_build/main.o: In function `radio_notification_init&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:346: undefined reference to `ble_radio_notification_init&amp;#39;
_build/main.o: In function `buffer_init&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:364: undefined reference to `app_timer_create&amp;#39;
_build/main.o: In function `buffer_send_handler&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:386: undefined reference to `app_timer_stop&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:393: undefined reference to `app_timer_stop&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:403: undefined reference to `m_coms_btle_send&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:423: undefined reference to `m_coms_btle_send&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:436: undefined reference to `app_timer_stop&amp;#39;
_build/main.o: In function `buffer_events&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:453: undefined reference to `m_coms_btle_advertising_start&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:479: undefined reference to `app_timer_start&amp;#39;
_build/main.o: In function `modules_init&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:498: undefined reference to `m_coms_btle_init&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:504: undefined reference to `app_captouch_init&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:507: undefined reference to `m_keyboard_init&amp;#39;
_build/main.o: In function `main&amp;#39;:
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:522: undefined reference to `app_sched_init&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:525: undefined reference to `app_timer_init&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:531: undefined reference to `app_captouch_enable&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:533: undefined reference to `app_captouch_start_calibration&amp;#39;
C:\Keil\ARM\Device\Nordic\captouch-ble\Board\nrf6310\ble\ble_app_hids_mouse\gcc/../main.c:538: undefined reference to `app_sched_execute&amp;#39;
collect2.exe: error: ld returned 1 exit status
make: *** [_build/ble_app_hids_mouse_xxaa.out] Error 1

13:16:13 Build Finished (took 2s.708ms)


&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Shall I included the sources files for the linker somewhere in the IDE or makefile?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5067?ContentTypeID=1</link><pubDate>Fri, 06 Dec 2013 09:09:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:570a0652-4a10-4114-952e-216b13e4e067</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;Remember that with Eclipse/GCC and the nRF51 SDK, there is no direct connection between the IDE and the build system. To add new header files or paths, you therefore should add them both Eclipse (so that code completion and jumping to definitions and similar work) and to the Makefile itself (so that building works).&lt;/p&gt;
&lt;p&gt;Based on your description, you seem to have done the first, but not the latter. You should therefore add the necessary paths also to your Makefile. It seems that you should be able to set them in C_SOURCE_PATHS and INCLUDEPATHS to make things work.&lt;/p&gt;
&lt;p&gt;Personally, I always tend to check that builds are working from the command line before integrating anything into Eclipse.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5066?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2013 18:53:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:503e3ce1-32cc-451e-ac19-4937d3b82f0d</guid><dc:creator>Ignacio Lopez</dc:creator><description>&lt;p&gt;Great Ole. Thanks again. Almost there. I&amp;#39;ve got everything (compiling, debugging, flashing, embSys,...) working fine with your project. Now I am trying to port my own project and I found the following error:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;17:42:09 **** Build of configuration Default for project ble_app_hids_mouse ****
make all 
rm -rf _build
mkdir _build
&amp;quot;C:/Program Files (x86)/GNU Tools ARM Embedded/4.7 2013q3//bin/arm-none-eabi-gcc&amp;quot; -mcpu=cortex-m0 -mthumb -mabi=aapcs -DNRF51 -DBOARD_NRF6310 -DNRF51822_QFAA_CA --std=gnu99 -Wall -Werror -mfloat-abi=soft -DDEBUG -g3 -O0 -I&amp;quot;../&amp;quot; -I&amp;quot;../../../../../Include&amp;quot; -I&amp;quot;../../../../../Include/gcc&amp;quot; -I&amp;quot;../../../../../Include/ext_sensors&amp;quot; -M ../main.c -MF &amp;quot;_build/main.d&amp;quot; -MT _build/main.o
../main.c:37:26: fatal error: app_captouch.h: No such file or directory
compilation terminated.
make: *** [_build/main.o] Error 1

17:42:09 Build Finished (took 407ms)


&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I have followed your advice from a previous post:&lt;/p&gt;
&lt;blockquote&gt;
&lt;ul&gt;
&lt;li&gt;In tab C/C++ Build the build directory should point to gcc folder, if the project name is blinkyEclipse the build directory should be: ${workspace_loc:/blinkyEclipse}/gcc&lt;/li&gt;
&lt;li&gt;in tab C/C++ General -&amp;gt; Path and Symbols -&amp;gt; GNU C : include directories should be added.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;My headers seems to be in the includes menu of the project. You can see it in the attached image. What do you think it may be going on?&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/GCC_5F00_Includes.jpg" alt="GCC_Includes.jpg" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5065?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2013 15:55:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9be75906-fbc8-47ba-bf95-1f181e1f1cb8</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;This Debug configuration is project specific, so you&amp;#39;ll only see that if you import the ble_app_hrs project, as given in the nAN-29. We don&amp;#39;t provide a ready-made project for blinky, so if you want to have a Debug build configuration, you must create this yourself. This can be done from Project -&amp;gt; Build configuration -&amp;gt; Manage menu.&lt;/p&gt;
&lt;p&gt;However, you can also choose to just use the Default one. The functionality of this is that you can for example make sure that things are compiled with debug symbols when debugging, but without when just pressing the build button or similar.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5064?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2013 14:58:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ea622b50-7994-4ba5-9cf7-e5ed7e037e06</guid><dc:creator>Ignacio Lopez</dc:creator><description>&lt;p&gt;Thanks Ole for your reply!. Very useful. It was the first step of the first section :o . Well, I manage to compile your example project blinky_example. But I have found a problem while setting up the debugging tool. From the nAN-29 v1.1, in the section 2 step 7 it says: &amp;#39;Set the Build configuration to Debug.&amp;#39; But I cannot see the this option in the drop down menu. I have attached an image of the issue.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/GCC_5F00_Debugging.jpg" alt="GCC_Debugging.jpg" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5063?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2013 11:10:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:92ac0a3e-64d8-4213-aa9b-a192174a3ad7</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;By the way, you may also want to have a look at this question, and the alternative set of Makefiles suggested there:
&lt;a target="_blank" href="https://devzone.nordicsemi.com/index.php/is-it-possible-to-flash-s110-from-linux-or-os-x" rel="nofollow"&gt;https://devzone.nordicsemi.com/index.php/is-it-possible-to-flash-s110-from-linux-or-os-x&lt;/a&gt;
&lt;a target="_blank" href="https://github.com/hlnd/nrf51-pure-gcc-setup" rel="nofollow"&gt;https://github.com/hlnd/nrf51-pure-gcc-setup&lt;/a&gt;
These are the Makefiles and linker scripts I use for my personal pet projects.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Working Workspace for nAN-29 v1.1</title><link>https://devzone.nordicsemi.com/thread/5062?ContentTypeID=1</link><pubDate>Thu, 05 Dec 2013 10:24:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:08e12dc4-9b27-4b7e-b26e-2b5f6b6fa255</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;If you use the SDK installer you must choose &amp;quot;Custom installation location&amp;quot; to get the GCC files. You can also take a look at the separate zip of the SDK, which includes those files.&lt;/p&gt;
&lt;p&gt;You&amp;#39;re quite right that the cs3-errors come from mixing old and new makefiles and linker scripts, so if you get the latest ones, you should be good to go! :-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>