<?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>I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/48130/i-want-add-the-nfc-example-at-ble_app_beacon-example</link><description>Hi, i&amp;#39;m using nrf52832 uploaded ble_app_beacon example. 
 I want nrf52832 to work as a beacon and as a nfc tag. 
 
 Thus, I added some nfc example code. nfc_t2t_lib.h also added in bla_app_beacon project file. 
 
 But, compile result have 2 errors. 
</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 07 Jun 2019 02:19:54 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/48130/i-want-add-the-nfc-example-at-ble_app_beacon-example" /><item><title>RE: I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/thread/191485?ContentTypeID=1</link><pubDate>Fri, 07 Jun 2019 02:19:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d614cc69-c2a9-47b8-869b-6320f641cfe7</guid><dc:creator>sjheo</dc:creator><description>&lt;p&gt;Jorgen,&amp;nbsp;&lt;span&gt;Thank you so much for kindly letting me know.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I added several Paths and C files as you told me, and l got an error, but it was BUILD correctly after modifying it in sdk_config.h!&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I learned a lot about keil because of you. Thank you.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/thread/191028?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 09:21:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5351dfa9-7089-4884-972a-76c749763e67</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;These are different errors, indicating that you have not included source files for nfc_platform and nrfx_nfct driver. I see you have included nfc_platform.c in your project, also make sure you add the following file:&lt;/p&gt;
&lt;p&gt;modules\nrfx\drivers\src\nrfx_nfct.c&lt;/p&gt;
&lt;p&gt;You also need to add this to your sdk_config.h file to enable the modules:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;// &amp;lt;e&amp;gt; NRFX_NFCT_ENABLED - nrfx_nfct - NFCT peripheral driver
//==========================================================
#ifndef NRFX_NFCT_ENABLED
#define NRFX_NFCT_ENABLED 1
#endif
// &amp;lt;o&amp;gt; NRFX_NFCT_CONFIG_IRQ_PRIORITY  - Interrupt priority
 
// &amp;lt;0=&amp;gt; 0 (highest) 
// &amp;lt;1=&amp;gt; 1 
// &amp;lt;2=&amp;gt; 2 
// &amp;lt;3=&amp;gt; 3 
// &amp;lt;4=&amp;gt; 4 
// &amp;lt;5=&amp;gt; 5 
// &amp;lt;6=&amp;gt; 6 
// &amp;lt;7=&amp;gt; 7 

#ifndef NRFX_NFCT_CONFIG_IRQ_PRIORITY
#define NRFX_NFCT_CONFIG_IRQ_PRIORITY 6
#endif

// &amp;lt;e&amp;gt; NRFX_NFCT_CONFIG_LOG_ENABLED - Enables logging in the module.
//==========================================================
#ifndef NRFX_NFCT_CONFIG_LOG_ENABLED
#define NRFX_NFCT_CONFIG_LOG_ENABLED 0
#endif
// &amp;lt;o&amp;gt; NRFX_NFCT_CONFIG_LOG_LEVEL  - Default Severity level
 
// &amp;lt;0=&amp;gt; Off 
// &amp;lt;1=&amp;gt; Error 
// &amp;lt;2=&amp;gt; Warning 
// &amp;lt;3=&amp;gt; Info 
// &amp;lt;4=&amp;gt; Debug 

#ifndef NRFX_NFCT_CONFIG_LOG_LEVEL
#define NRFX_NFCT_CONFIG_LOG_LEVEL 3
#endif

// &amp;lt;o&amp;gt; NRFX_NFCT_CONFIG_INFO_COLOR  - ANSI escape code prefix.
 
// &amp;lt;0=&amp;gt; Default 
// &amp;lt;1=&amp;gt; Black 
// &amp;lt;2=&amp;gt; Red 
// &amp;lt;3=&amp;gt; Green 
// &amp;lt;4=&amp;gt; Yellow 
// &amp;lt;5=&amp;gt; Blue 
// &amp;lt;6=&amp;gt; Magenta 
// &amp;lt;7=&amp;gt; Cyan 
// &amp;lt;8=&amp;gt; White 

#ifndef NRFX_NFCT_CONFIG_INFO_COLOR
#define NRFX_NFCT_CONFIG_INFO_COLOR 0
#endif

// &amp;lt;o&amp;gt; NRFX_NFCT_CONFIG_DEBUG_COLOR  - ANSI escape code prefix.
 
// &amp;lt;0=&amp;gt; Default 
// &amp;lt;1=&amp;gt; Black 
// &amp;lt;2=&amp;gt; Red 
// &amp;lt;3=&amp;gt; Green 
// &amp;lt;4=&amp;gt; Yellow 
// &amp;lt;5=&amp;gt; Blue 
// &amp;lt;6=&amp;gt; Magenta 
// &amp;lt;7=&amp;gt; Cyan 
// &amp;lt;8=&amp;gt; White 

#ifndef NRFX_NFCT_CONFIG_DEBUG_COLOR
#define NRFX_NFCT_CONFIG_DEBUG_COLOR 0
#endif

// &amp;lt;/e&amp;gt;

// &amp;lt;/e&amp;gt;

// &amp;lt;e&amp;gt; NFC_PLATFORM_ENABLED - nfc_platform - NFC platform module for Clock control.
//==========================================================
#ifndef NFC_PLATFORM_ENABLED
#define NFC_PLATFORM_ENABLED 1
#endif
// &amp;lt;e&amp;gt; NFC_PLATFORM_LOG_ENABLED - Enables logging in the module.
//==========================================================
#ifndef NFC_PLATFORM_LOG_ENABLED
#define NFC_PLATFORM_LOG_ENABLED 0
#endif
// &amp;lt;o&amp;gt; NFC_PLATFORM_LOG_LEVEL  - Default Severity level
 
// &amp;lt;0=&amp;gt; Off 
// &amp;lt;1=&amp;gt; Error 
// &amp;lt;2=&amp;gt; Warning 
// &amp;lt;3=&amp;gt; Info 
// &amp;lt;4=&amp;gt; Debug 

#ifndef NFC_PLATFORM_LOG_LEVEL
#define NFC_PLATFORM_LOG_LEVEL 3
#endif

// &amp;lt;o&amp;gt; NFC_PLATFORM_INFO_COLOR  - ANSI escape code prefix.
 
// &amp;lt;0=&amp;gt; Default 
// &amp;lt;1=&amp;gt; Black 
// &amp;lt;2=&amp;gt; Red 
// &amp;lt;3=&amp;gt; Green 
// &amp;lt;4=&amp;gt; Yellow 
// &amp;lt;5=&amp;gt; Blue 
// &amp;lt;6=&amp;gt; Magenta 
// &amp;lt;7=&amp;gt; Cyan 
// &amp;lt;8=&amp;gt; White 

#ifndef NFC_PLATFORM_INFO_COLOR
#define NFC_PLATFORM_INFO_COLOR 0
#endif

// &amp;lt;o&amp;gt; NFC_PLATFORM_DEBUG_COLOR  - ANSI escape code prefix.
 
// &amp;lt;0=&amp;gt; Default 
// &amp;lt;1=&amp;gt; Black 
// &amp;lt;2=&amp;gt; Red 
// &amp;lt;3=&amp;gt; Green 
// &amp;lt;4=&amp;gt; Yellow 
// &amp;lt;5=&amp;gt; Blue 
// &amp;lt;6=&amp;gt; Magenta 
// &amp;lt;7=&amp;gt; Cyan 
// &amp;lt;8=&amp;gt; White 

#ifndef NFC_PLATFORM_DEBUG_COLOR
#define NFC_PLATFORM_DEBUG_COLOR 0
#endif

// &amp;lt;/e&amp;gt;

// &amp;lt;/e&amp;gt;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/thread/191005?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 08:37:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ee1975d-3028-428a-a30e-a707f1936eac</guid><dc:creator>sjheo</dc:creator><description>&lt;p&gt;&lt;span&gt;Sorry Jorgen..&amp;nbsp;My answer has confused you.&amp;nbsp;I simply skipped the front part.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The exact path is:&amp;nbsp; ..\..\..\..\..\..\..\components\nfc\t2t_lib.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Now I am testing using the example in the same sdk (nRF5_SDK_15.3.0_59ac345\examples) and it is automatically added to Options for Target.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The examples used are &amp;quot;nfc / record_text&amp;quot; and &amp;quot;experimental\ble_app_hrs_rscs_relay&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;And&amp;nbsp;&amp;nbsp;I created the group file in the project window like record_text project window.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/960x720/__key/communityserver-discussions-components-files/4/pastedimage1559723525175v1.png" alt=" " /&gt;&amp;nbsp;But, an error still occurs...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The results I just build are..&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img height="139" src="https://devzone.nordicsemi.com/resized-image/__size/960x720/__key/communityserver-discussions-components-files/4/pastedimage1559723585320v2.png" width="578" alt=" " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Is there a way to solve it?..&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/thread/190988?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 08:08:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ba8f6fe-34c8-45e8-8bf4-665c758b744d</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;How exactly did you add the .lib file to your project? Did you browse the directories to locate it? The path reported in the linker output seems too short compared to where the lib is located in relation to the ble_app_hrs_rscs_relay example. If you did not move it, the path to the lib should be like this:&lt;/p&gt;
&lt;p&gt;..\..\..\..\..\..\..\components\nfc\t2t_lib\nfc_t2t_lib_keil.lib&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/thread/190956?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 06:04:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3f3faeb2-c860-41cc-9428-dbc5fcae6b29</guid><dc:creator>sjheo</dc:creator><description>&lt;p&gt;&lt;span&gt;This time I tried to combine the nrf \ record_text example with &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;the ble_app_hrs_rscs_relay example in the same sdk.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Other build results appeared.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;error: L6002U : Could not open file..\..\..\components\nfc\t2t_lib\nfc_t2t_keil.lib: No such file or directory.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Clearly, it works in the record_text example...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I added &amp;quot;components\nfc\t2t_lib folder through keil &amp;quot;Options for Target &amp;gt; C/C++ / Include Paths.&amp;quot; and&amp;nbsp; I added the some C file after I created the group in the project window like record_text project window.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/thread/190952?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 04:55:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bdf2fa75-e959-4d14-b5e0-34c8188154e4</guid><dc:creator>sjheo</dc:creator><description>&lt;p&gt;I added components\nfc\t2t_lib folder through keil &amp;quot;Options for Target &amp;gt; C/C++ / Include Paths.&lt;br /&gt;&lt;span&gt;Is not your advice telling this?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I WANT ADD THE NFC EXAMPLE AT ble_app_beacon EXAMPLE.</title><link>https://devzone.nordicsemi.com/thread/190736?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 11:03:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:77eca9ff-706b-462e-a4f4-ebe6b97737be</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You need to include the precompiled NFC T2T library for your compiler, found in&amp;nbsp;components\nfc\t2t_lib\nfc_t2t_lib_[compiler].a/lib&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Jørgen&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>