search
HomeBackend DevelopmentPHP TutorialBLE-NRF51822 tutorial 3-sdk program framework analysis_PHP tutorial

BLE-NRF51822 tutorial 3-sdk program framework analysis


nordicBLE technical exchange group 498676838

This lecture is an introduction to the framework and will not involve too much Multiple code details.

51822’s official SDK is actually not framework dependent. What is a framework? For example, TI's BLE SDK has an operating system abstraction layer (OSAL), which is a polling schedule. You need to follow his way to create tasks and so on.

The 51822 SDK essentially only provides various calling interfaces, such as opening the initialization protocol stack, initializing some hardware function modules, starting broadcast, initiating links, etc. How you use these interfaces is entirely up to you. However, general firmware development involves the initialization of various resources through similar processes, and 51822 is no exception. Therefore, the main function of the slave example in the SDK is similar to the following steps:

Take the official serial port BLE as an example:

int main(void)

{

leds_init(); //Not necessary, but this example uses

timers_init(); //Not necessary, but this example uses

buttons_init( ; ; //Must

gap_params_init(); //Must

services_init(); //Related to the services you create, the details of different services are different but the general establishment

//process Basically the same, usually you can directly use the official example to modify some parameters

advertising_init(); //Broadcast data initialization must be

conn_params_init(); //It depends on the situation, if There is no need to negotiate connection parameters after connection, and this initialization is // optional


sec_params_init(); //Security parameter initialization, if pairing binding is not used, this does not need to be initialized

advertising_start(); // To enable broadcasting,

// Enter main loop

for (;;)

{

power_manage(); //Enter sleep

}

}

You can see that only the core is necessary Just these 5 functions. You can remove all other codes, and as long as these five functions are left, the device can still run, and the mobile phone can also search for the device and communicate with the device.

This method of initialization can be said to be no different from our general microcontroller development.

What about after initialization. In the past when developing bare-board microcontrollers, we entered a while loop to perform some repetitive tasks. Later, in order to reduce power consumption, we started to add a sleep code in the while(1) loop to put the chip into sleep state when not working, and rely on interrupts to wake up. Deal with what comes.

The main function of 51822 above is also a for{} loop at the end, and the internal code of power_manage(); is actually a sleep instruction. The Main function is gone here, and in the end it is actually a sleep cycle. There are no tasks visible here, only sleep. It is conceivable that the protocol stack implementation of 51822 should be based on "event wake-up", that is, it sleeps when nothing happens, wakes up when something happens, and then continues to sleep. So where are the codes for handling events?

How does the protocol stack work?

Where do I add a service I want to create?

Where is the data sent from the mobile phone?

How do I send data to my mobile phone?

These issues are explained one by one below:

How does the protocol stack work?

To understand how the protocol stack works, you must first understand that the 51822 protocol stack is 100% event-driven. That is to say, any data sent by the protocol stack to the app is event-based.

For example, the device receives a link request from the mobile phone, or data sent from the mobile phone, etc. The protocol stack first receives the data and does some processing, and then packages the data (such as link requests, or ordinary data, etc.) into a structure and attaches the event ID, such as BLE_GAP_EVT_CONNECTED or BLE_GATTS_EVT_WRITE to tell the upper-layer app respectively about the event. The event represented by the structure.

For example, BLE_GAP_EVT_CONNECTED represents a link event, then the data contained in this event structure is connection parameters and other data.

And BLE_GATTS_EVT_WRITE represents a write event, so the data in the structure is the data written by the peer device (such as a mobile phone) to the board.



For example, the dispatch dispatch function in the uart demo

static void ble_evt_dispatch (ble_evt_t *p_ble_evt)

{

ble_conn_params_on_ble_evt(p_ble_evt);

ble_nus_on_ble_evt(&m_nus, p_ble_evt);

on_ble_evt(p_ble _evt);

}

When any BLE related event is thrown up the protocol stack to the app, ble_evt_dispatch will be called. Thereby throwing the event to each service function or processing module, here the event is thrown to the

connection parameter management processing function ble_conn_params_on_ble_evt

Uart service event processing function ble_nus_on_ble_evt (nus is Nordicuart server)

General event processing function on_ble_evt

Different events are distinguished by id in the event structure ble_evt_t. The difference is that the event processing function usually only handles events related to one's own emotions. Let's take a look at the internals of the ble_nus_on_ble_evt event processing function

voidble_nus_on_ble_evt(ble_nus_t * p_nus,ble_evt_t * p_ble_evt)

{
if ((p_nus == NULL) || (p_ble_evt == NULL))

{

return;

}

switch (p_ble_evt- >header.evt_id)

{

caseBLE_GAP_EVT_CONNECTED:

on_connect(p_nus, p_ble_evt);

break;

caseBLE_GAP_EVT_DISCONNECTED:

on_disconnect(p_nus, p_ble_evt);

break;

caseBLE_GATTS_EVT_WRITE:

on_write(p_nus, p_ble_evt);

break;

default:

// No implementation needed.

break;

}

}

As you can see, the uart service event processing function only cares about three events, link events, disconnection events and write events (the peer device sends data). Different events are handled differently. This is done by the developer The personnel themselves implemented it. For example, for connection events, the connection handle in the event structure should usually be recorded, because subsequent BLE operations are basically based on the connection handle (which can be regarded as the channel ID for communication between two devices, but is actually the data access in the link layer) address concept).

PS: Events are handed over to dispatch to dispatch to various services and modules. For the process of how to hand over lower-level events to the dispatch function, please refer to the 51822 tutorial in the group announcement. -Protocol stack overview tutorial.


After solving the so-called event drive, let’s solve it again: If you want to create a service, where should you add it?

There is a services_init() during the initialization process of the main function; inside this function is the code to add services, add characteristic values, etc.

The inside of the function actually registers the callback function nus_data_handler for a while (this function will print out the data from the computer serial port when the mobile phone sends data to the board) and then executes the real initialization function ble_nus_init .

Internally, this function will call the api interface of the sd_ble_gatts_service_add protocol stack to add services.

The api interface of the sd_ble_gatts_characteristic_add protocol stack will also be called later to add characteristic values.

The hierarchical relationship is as follows:


That is to say, to complete a complete service establishment function, there are only two core functions, sd_ble_gatts_service_add() and sd_ble_gatts_characteristic_add().

Usually establishing a service does not require writing it from scratch. Instead, directly assign the official services_init() function and then make some small changes. For example, modify the uuid, modify the read/write attributes, add one more characteristic value, etc. There is actually very little to modify.


Let’s solve the last two questions: Where is the data sent from the mobile phone? How do I send data to a mobile phone?

To understand these two questions, let’s first take a look at several questions related to the above that are often asked in the group:



Ask:

In which function does the data sent by the mobile phone to the 51822 device come out?
Answer:
There is no function
The protocol stack will throw up an event structure
The received data is in the structure


Question:

Are the Bluetooth upload function and the download function the same? Are they all service API functions?
Answer:
Only the upload function is used by the server to pass data to the client.
When sending data, after the Bluetooth chip receives the data, the protocol stack will throw up an event structure with data. For details, please refer to the data of various event processing functions in the dispatch dispatch program in the sample code.

Q:

The function sd_ble_gatts_hvx() is the sending function of Bluetooth. Does anyone know the receiving function of Bluetooth?
Answer:
Bluetooth does not have a receiving function. Bluetooth data is received at the bottom layer. After receiving, the event will be returned to the upper layer's ble_evt_dispatch distribution function, which will distribute the event to various services or event processing functions. The service or processing function will capture whether there is a write event caseBLE_GATTS_EVT_WRITE: if it exists, perform corresponding processing. The received data is all in the returned event structure

In fact, after reading these three questions, the above problem has almost been solved. As a slave device, BLE has an API interface for sending data to the mobile phone, which is the sd_ble_gatts_hvx() asked above. You can set whether to send it in notification mode or instruction mode through parameters (notification does not require a reply confirmation, instruction does). But there is no receiving function for the data sent by the mobile phone. Why? Because the protocol stack is event-driven! Therefore, after receiving the data, the protocol stack will give the upper-layer app a write event (indicating that the peer device has written data), and the written data is in this event structure. We just need to extract it. So there is no receiving function API.


On the other hand, it can also explain why there is no receiving data function. Because when sending data, it is "synchronous" and is called actively when you want to send data. But when receiving data, it is "asynchronous", and the data may arrive at any time. It is better to call a function and wait for the data to arrive. If the data does not come, nothing can be done. So reception is event-driven. If there is data, then transfer it to process.

Use a diagram to explain:



If it still feels a bit abstract, go back and look at the explanation of the protocol stack operation. . You should be more aware of the so-called event-driven



www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1068092.htmlTechArticleBLE-NRF51822 Tutorial 3-SDK Program Framework Analysis nordicBLE Technical Exchange Group 498676838 This lecture is an introduction to the framework and will not be involved. into too many code details. The official SDK of 51822 actually does not have a framework...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在 iPhone 和 Android 上关闭蓝色警报如何在 iPhone 和 Android 上关闭蓝色警报Feb 29, 2024 pm 10:10 PM

根据美国司法部的解释,蓝色警报旨在提供关于可能对执法人员构成直接和紧急威胁的个人的重要信息。这种警报的目的是及时通知公众,并让他们了解与这些罪犯相关的潜在危险。通过这种主动的方式,蓝色警报有助于增强社区的安全意识,促使人们采取必要的预防措施以保护自己和周围的人。这种警报系统的建立旨在提高对潜在威胁的警觉性,并加强执法机构与公众之间的沟通,以共尽管这些紧急通知对我们社会至关重要,但有时可能会对日常生活造成干扰,尤其是在午夜或重要活动时收到通知时。为了确保安全,我们建议您保持这些通知功能开启,但如果

在Android中实现轮询的方法是什么?在Android中实现轮询的方法是什么?Sep 21, 2023 pm 08:33 PM

Android中的轮询是一项关键技术,它允许应用程序定期从服务器或数据源检索和更新信息。通过实施轮询,开发人员可以确保实时数据同步并向用户提供最新的内容。它涉及定期向服务器或数据源发送请求并获取最新信息。Android提供了定时器、线程、后台服务等多种机制来高效地完成轮询。这使开发人员能够设计与远程数据源保持同步的响应式动态应用程序。本文探讨了如何在Android中实现轮询。它涵盖了实现此功能所涉及的关键注意事项和步骤。轮询定期检查更新并从服务器或源检索数据的过程在Android中称为轮询。通过

如何在Android中实现按下返回键再次退出的功能?如何在Android中实现按下返回键再次退出的功能?Aug 30, 2023 am 08:05 AM

为了提升用户体验并防止数据或进度丢失,Android应用程序开发者必须避免意外退出。他们可以通过加入“再次按返回退出”功能来实现这一点,该功能要求用户在特定时间内连续按两次返回按钮才能退出应用程序。这种实现显著提升了用户参与度和满意度,确保他们不会意外丢失任何重要信息Thisguideexaminesthepracticalstepstoadd"PressBackAgaintoExit"capabilityinAndroid.Itpresentsasystematicguid

Android逆向中smali复杂类实例分析Android逆向中smali复杂类实例分析May 12, 2023 pm 04:22 PM

1.java复杂类如果有什么地方不懂,请看:JAVA总纲或者构造方法这里贴代码,很简单没有难度。2.smali代码我们要把java代码转为smali代码,可以参考java转smali我们还是分模块来看。2.1第一个模块——信息模块这个模块就是基本信息,说明了类名等,知道就好对分析帮助不大。2.2第二个模块——构造方法我们来一句一句解析,如果有之前解析重复的地方就不再重复了。但是会提供链接。.methodpublicconstructor(Ljava/lang/String;I)V这一句话分为.m

如何在2023年将 WhatsApp 从安卓迁移到 iPhone 15?如何在2023年将 WhatsApp 从安卓迁移到 iPhone 15?Sep 22, 2023 pm 02:37 PM

如何将WhatsApp聊天从Android转移到iPhone?你已经拿到了新的iPhone15,并且你正在从Android跳跃?如果是这种情况,您可能还对将WhatsApp从Android转移到iPhone感到好奇。但是,老实说,这有点棘手,因为Android和iPhone的操作系统不兼容。但不要失去希望。这不是什么不可能完成的任务。让我们在本文中讨论几种将WhatsApp从Android转移到iPhone15的方法。因此,坚持到最后以彻底学习解决方案。如何在不删除数据的情况下将WhatsApp

同样基于linux为什么安卓效率低同样基于linux为什么安卓效率低Mar 15, 2023 pm 07:16 PM

原因:1、安卓系统上设置了一个JAVA虚拟机来支持Java应用程序的运行,而这种虚拟机对硬件的消耗是非常大的;2、手机生产厂商对安卓系统的定制与开发,增加了安卓系统的负担,拖慢其运行速度影响其流畅性;3、应用软件太臃肿,同质化严重,在一定程度上拖慢安卓手机的运行速度。

Android中动态导出dex文件的方法是什么Android中动态导出dex文件的方法是什么May 30, 2023 pm 04:52 PM

1.启动ida端口监听1.1启动Android_server服务1.2端口转发1.3软件进入调试模式2.ida下断2.1attach附加进程2.2断三项2.3选择进程2.4打开Modules搜索artPS:小知识Android4.4版本之前系统函数在libdvm.soAndroid5.0之后系统函数在libart.so2.5打开Openmemory()函数在libart.so中搜索Openmemory函数并且跟进去。PS:小知识一般来说,系统dex都会在这个函数中进行加载,但是会出现一个问题,后

Android APP测试流程和常见问题是什么Android APP测试流程和常见问题是什么May 13, 2023 pm 09:58 PM

1.自动化测试自动化测试主要包括几个部分,UI功能的自动化测试、接口的自动化测试、其他专项的自动化测试。1.1UI功能自动化测试UI功能的自动化测试,也就是大家常说的自动化测试,主要是基于UI界面进行的自动化测试,通过脚本实现UI功能的点击,替代人工进行自动化测试。这个测试的优势在于对高度重复的界面特性功能测试的测试人力进行有效的释放,利用脚本的执行,实现功能的快速高效回归。但这种测试的不足之处也是显而易见的,主要包括维护成本高,易发生误判,兼容性不足等。因为是基于界面操作,界面的稳定程度便成了

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.