mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-24 19:42:27 +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:
@ -264,6 +264,9 @@ void MeshBackendBase::setAPHidden(const bool apHidden)
|
||||
|
||||
bool MeshBackendBase::getAPHidden() const {return _apHidden;}
|
||||
|
||||
ConditionalPrinter *MeshBackendBase::getConditionalPrinter() {return &_conditionalPrinter;}
|
||||
const ConditionalPrinter *MeshBackendBase::getConditionalPrinterConst() const {return &_conditionalPrinter;}
|
||||
|
||||
bool MeshBackendBase::latestTransmissionSuccessfulBase(const std::vector<TransmissionOutcome> &latestTransmissionOutcomes)
|
||||
{
|
||||
if(latestTransmissionOutcomes.empty())
|
||||
|
Reference in New Issue
Block a user