forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdd8e9d
commit fe1f00d
Showing
2 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,56 @@ | ||
# Protocols serialization applications testing | ||
- [Protocols serialization applications testing](#protocols-serialization-applications-testing) | ||
- [Overview](#overview) | ||
- [Setting up nRF Connect SDK](#setting-up-nrf-connect-sdk) | ||
- [Install NCS](#install-ncs) | ||
- [Building application](#building-application) | ||
- [Flashing and connecting](#flashing-and-connecting) | ||
- [Testing](#testing) | ||
- [Testing BLE](#testing-ble) | ||
- [Testing OpenThread](#testing-openthread) | ||
|
||
## Overview | ||
|
||
## Setting up nRF Connect SDK | ||
|
||
## Install NCS | ||
Please see: | ||
https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.6.0/nrf/installation/install_ncs.html | ||
|
||
## Setting up nRF Connect SDK | ||
To initialize nrf belov command instead the one mentioned in instruction: | ||
|
||
Install NCS | ||
`west init -m https://github.com/nrfconnect/sdk-nrf --mr collab-serial-ble-ot` | ||
|
||
## Building application | ||
|
||
|
||
## Flashing and connecting | ||
|
||
## Testing | ||
|
||
### Testing BLE | ||
|
||
In order to test BLE You will need to install `nRF Connect for Mobile` | ||
|
||
- IOS: https://apps.apple.com/pl/app/nrf-connect-for-mobile/id1054362403 | ||
|
||
- Android: https://play.google.com/store/apps/details?id=no.nordicsemi.android.mcp&pcampaignid=web_share | ||
|
||
On client site please invoke in zephyr shell: | ||
```console | ||
> bt init | ||
> bt advertise on | ||
``` | ||
|
||
On mobile Phone open `nRF Connect` app and scan for: `Nordic_UART_Service` as in image below. | ||
|
||
![alt text](resources/nrf_scan.jpg){height=400px width=500px} | ||
|
||
### | ||
Tap connect. | ||
|
||
Testing BLE | ||
This will connect to nRF52 and You should be able to see in zephyr Shell similar message: | ||
|
||
### | ||
``` | ||
LE conn param updated: int 0x0027 lat 0 to 42 | ||
``` | ||
|
||
Testing OpenThread | ||
### Testing OpenThread |