1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-11-28 17:36:39 +03:00

- Use the new Crypto, TypeConversion and random() functionality added to the Arduino core, instead of the versions local to the mesh library.

- Rearrange class variables to minimize storage padding.

- Add protected getters for EspnowMeshBackend and MeshBackendBase components.

- Partially update README.md
This commit is contained in:
Anders
2020-05-18 22:09:34 +02:00
parent 595fb23128
commit f059e57322
34 changed files with 210 additions and 1573 deletions

View File

@@ -18,11 +18,11 @@
#define __ESPNOWTRANSMITTER_H__
#include <Arduino.h>
#include <Crypto.h>
#include "ExpiringTimeTracker.h"
#include "EspnowDatabase.h"
#include "EspnowConnectionManager.h"
#include "ConditionalPrinter.h"
#include "CryptoInterface.h"
class EspnowMeshBackend;
@@ -57,7 +57,7 @@ public:
static void setUseEncryptedMessages(const bool useEncryptedMessages);
static bool useEncryptedMessages();
static void setEspnowMessageEncryptionKey(const uint8_t espnowMessageEncryptionKey[CryptoInterface::ENCRYPTION_KEY_LENGTH]);
static void setEspnowMessageEncryptionKey(const uint8_t espnowMessageEncryptionKey[experimental::crypto::ENCRYPTION_KEY_LENGTH]);
static void setEspnowMessageEncryptionKey(const String &espnowMessageEncryptionKeySeed);
static const uint8_t *getEspnowMessageEncryptionKey();
@@ -101,9 +101,9 @@ private:
EspnowDatabase & _database;
EspnowConnectionManager & _connectionManager;
uint8_t _broadcastTransmissionRedundancy = 1;
responseTransmittedHookType _responseTransmittedHook = [](const String &, const uint8_t *, uint32_t, EspnowMeshBackend &){ return true; };
uint8_t _broadcastTransmissionRedundancy = 1;
};
#endif