old RF95 code builds again

This commit is contained in:
geeksville
2020-04-30 16:36:59 -07:00
parent d7d8188093
commit dd7452ad96
7 changed files with 47 additions and 66 deletions

View File

@@ -75,17 +75,6 @@ class RadioLibInterface : public RadioInterface
// methods from radiohead
/// Sets the address of this node. Defaults to 0xFF. Subclasses or the user may want to change this.
/// This will be used to test the adddress in incoming messages. In non-promiscuous mode,
/// only messages with a TO header the same as thisAddress or the broadcast addess (0xFF) will be accepted.
/// In promiscuous mode, all messages will be accepted regardless of the TO header.
/// In a conventional multinode system, all nodes will have a unique address
/// (which you could store in EEPROM).
/// You would normally set the header FROM address to be the same as thisAddress (though you dont have to,
/// allowing the possibilty of address spoofing).
/// \param[in] thisAddress The address of this node.
virtual void setThisAddress(uint8_t thisAddress) {}
virtual void loop(); // Idle processing
/**