mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-01 11:06:30 -04:00
Ble tx improvements (#1546)
This commit is contained in:
parent
dceb7255b0
commit
b5c244a09b
8 changed files with 67 additions and 24 deletions
|
@ -761,15 +761,18 @@ class BTLETxConfigureMessage : public Message {
|
|||
constexpr BTLETxConfigureMessage(
|
||||
const uint8_t channel_number,
|
||||
char* macAddress,
|
||||
char* advertisementData)
|
||||
char* advertisementData,
|
||||
const uint8_t pduType)
|
||||
: Message{ID::BTLETxConfigure},
|
||||
channel_number(channel_number),
|
||||
macAddress(macAddress),
|
||||
advertisementData(advertisementData) {
|
||||
advertisementData(advertisementData),
|
||||
pduType(pduType) {
|
||||
}
|
||||
const uint8_t channel_number;
|
||||
char* macAddress;
|
||||
char* advertisementData;
|
||||
const uint8_t pduType;
|
||||
};
|
||||
|
||||
class NRFRxConfigureMessage : public Message {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue