-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
a0b232f
commit 65804c9
Showing
6 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 +1,4 @@ | ||
<var> | ||
<creation-time>2024-11-05 22:00:01</creation-time> | ||
<document-version>1.14.17</document-version> | ||
<creation-time>2024-11-21 17:37:21</creation-time> | ||
<document-version>1.14.18</document-version> | ||
</var> |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# VSCP over BLE | ||
|
||
The general BLE frame format is as follows | ||
|
||
![VSCP Bluetooth](https://developerhelp.microchip.com/xwiki/bin/download/applications/ble/introduction/bluetooth-architecture/bluetooth-controller-layer/bluetooth-link-layer/Packet-Types/WebHome/packet-format-top-level.png?width=600&height=210&rev=1.1) | ||
|
||
## Advertising format | ||
|
||
The general BLE advertising format is as follows | ||
|
||
![BLE Advertising](https://developerhelp.microchip.com/xwiki/bin/download/applications/ble/introduction/bluetooth-architecture/bluetooth-controller-layer/bluetooth-link-layer/Packet-Types/WebHome/adv-channel-pdu.png?width=450&height=183&rev=1.1) | ||
|
||
|
||
The VSCP advertising payload format is as follows | ||
|
||
|
||
| Description | Size | Note | | ||
| --- | --- | --- | | ||
| head | 8-bit | | | ||
| timestamp | 32 bit | Microsecond timestamp | ||
| vscp-class | 32-bits | VSCP class | | ||
| vscp-type | 32 bits | VSCP type | | ||
| data | max = 37 - 13 = 24 | VSCP data | | ||
|
||
* GUID is constructed from BLE MAC, prefix _FF:FF:FF:FF:FF:FF:FF:F8:YY:YY:YY:YY:YY:YY:XX:XX_ where _YY:YY:YY:YY:YY:YY_ is the BLE MAC and _XX:XX_ is the nodeid. | ||
* obid is set by receiver, zero if not used. | ||
* time is set by receiver | ||
|
||
|
||
[filename](./bottom_copyright.md ':include') |
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