mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-23 08:45:22 +03:00
- Add broadcast functionality.
- Add createPermanentConnections argument to attemptAutoEncryptingTransmission method. - Reduce risk of misinterpreting acks by adding check for ack sender MAC. - Reduce _encryptionRequestTimeoutMs from 500 ms to 300 ms since this should give enough (100 %) margin to the level where problems start appearing (150 ms timeout) and also save a lot of time in case of request failure. - Improve comments.
This commit is contained in:
@ -32,6 +32,7 @@ class MessageData : public TimeTracker {
|
||||
|
||||
public:
|
||||
|
||||
MessageData(String &message, uint8_t transmissionsRemaining, uint32_t creationTimeMs = millis());
|
||||
MessageData(uint8_t *initialTransmission, uint8_t transmissionLength, uint32_t creationTimeMs = millis());
|
||||
/**
|
||||
* @transmission A string of characters, including initial protocol bytes.
|
||||
|
Reference in New Issue
Block a user