<?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>Bluetooth Fundamentals Course</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/100352/bluetooth-fundamentals-course</link><description>I am trying to work my way through the BLE Fundamentals course; I got through Lesson1 Ok, but lesson 2 is a problem. In this lesson the author instructs you to add lines of code to a main.c program but he doesn&amp;#39;t explicitly tell you where, further he</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 02 Jun 2023 07:31:45 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/100352/bluetooth-fundamentals-course" /><item><title>RE: Bluetooth Fundamentals Course</title><link>https://devzone.nordicsemi.com/thread/428913?ContentTypeID=1</link><pubDate>Fri, 02 Jun 2023 07:31:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:89b422e3-3150-4dee-b0cb-a7cb1d616d37</guid><dc:creator>Einarh</dc:creator><description>[quote user="Jerry Easley"]I have no idea what the macros BT_DATA_BYTES, BT_DATA_FLAGS, nor BT_LE_AD_NO_BREDR expand into so I’m clueless about what they do.[/quote]
&lt;p&gt;They&amp;#39;re all explained in detail in the exercise and there are links to their documentation, I really don&amp;#39;t know what more you could ask for.&lt;/p&gt;
[quote user="Jerry Easley"]The author does not explicitly state where in the main.c program to place the above line and so one is left to guess.[/quote]
&lt;p&gt;You declare the advertising flags before you use them, that&amp;#39;s all there&amp;#39;s to it.&lt;/p&gt;
[quote user="Jerry Easley"]I think that had the author just presented an annotated version of the main.c program, the course would have been much more effective and comprehensible.[/quote]
&lt;p&gt;The solutions are available to you, so you are free to go through the course in this manner.&lt;/p&gt;
[quote user="Jerry Easley"]all I need is example code and reference material and I can understand what it does.[/quote]
&lt;p&gt;We have samples and documentation available if that is more effective learning material for you:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/bl.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/bl.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/samples/bluetooth/bluetooth.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/samples/bluetooth/bluetooth.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/connectivity/bluetooth/overview.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/connectivity/bluetooth/overview.html&lt;/a&gt;&lt;/p&gt;
[quote user="Jerry Easley"]The screen shot I provided you does not at all resemble the the outputs presented in the course[/quote]
&lt;p&gt;I was referring to this screenshot:&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/image_2D00_206.png" /&gt;&lt;/p&gt;
[quote user="Jerry Easley"]I just thought you should know I was having some problems with it.[/quote]
&lt;p&gt;Thanks man, noted&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth Fundamentals Course</title><link>https://devzone.nordicsemi.com/thread/428841?ContentTypeID=1</link><pubDate>Thu, 01 Jun 2023 19:23:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3a3eb98f-6c12-469c-9934-25ac9cd7c0a3</guid><dc:creator>Jerry Easley</dc:creator><description>&lt;p&gt;Hi Einor,&lt;/p&gt;
&lt;p&gt;The screen shot I provided you does not at all resemble the the outputs presented in the course; I guess you and I are just going to disagree on this point. I have found;out from sources external to Nordic about how to use the App, so I&amp;rsquo;m good on that issue now.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In Lesson 2, exercise 1 step 4.1.1, you are instructed to enter the following into the main.c program:&lt;/p&gt;
&lt;p&gt;static const struct bt_data_ad[] = {&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;/* some text */&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;/* some text */&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;Then a little further down it says to add the following to main.c:&lt;/p&gt;
&lt;p&gt;BT_DATA_BYTES(BT_DATA_FLAGS, BT_LE_AD_NO_BREDR),&lt;/p&gt;
&lt;p&gt;I have no idea what the macros BT_DATA_BYTES, BT_DATA_FLAGS, nor BT_LE_AD_NO_BREDR expand into so I&amp;rsquo;m clueless about what they do. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;The author does not explicitly state where in the main.c program to place the above line and so one is left to guess. &amp;nbsp;The course is continued in the fashion; it gives me a headache trying to understand it. &amp;nbsp;Further I wonder what purpose of having the student perform these rather tedious, ill posited exercises. &amp;nbsp;After some investigation I found that along with the problem sets are solution sets. &amp;nbsp;These, unlike the rest of the course, are excellent. &amp;nbsp;I wonder why the information is presented in such an obscure way? I think that had the author just presented an annotated version of the main.c program, the course would have been much more effective and comprehensible.&lt;/p&gt;
&lt;p&gt;I have adapted the course to my needs and am progressing through it; all I need is example code and reference material and I can understand what it does. &amp;nbsp;In my opinion the course narrative servers only to obfuscate how things work.&lt;/p&gt;
&lt;p&gt;In any case, I have moved on; I just thought you should know I was having some problems with it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;And, finally, yes I have taken the fundamentals course.&lt;/p&gt;
&lt;p&gt;As far as I&amp;rsquo;m concerned, I have nothing further to pursue and see no purpose in keeping it open.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Bluetooth Fundamentals Course</title><link>https://devzone.nordicsemi.com/thread/428656?ContentTypeID=1</link><pubDate>Thu, 01 Jun 2023 09:10:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a0b5b9a6-9a98-4d31-ac19-433350073a28</guid><dc:creator>Einarh</dc:creator><description>&lt;p&gt;Hello&lt;/p&gt;
[quote user=""]In this lesson the author instructs you to add lines of code to a main.c program but he doesn&amp;#39;t explicitly tell you where, further he obfuscates what he is doing by using macros I have never seen before[/quote]
&lt;p&gt;At what steps in the exercise did you fall off? Which macros in particular did you find confusing?&lt;/p&gt;
&lt;p&gt;Did you go through the nRF Connect SDK fundamentals course before going into the BLE course?&lt;/p&gt;
[quote user=""]when I start nrfconnect mobile my screen looks completely different from my screen[/quote]
&lt;p&gt;Your screenshot looks similar to the iOS screenshot in the end of exercise 3, I&amp;#39;m not sure what you&amp;#39;re referring to here.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>