[nRF24] Renamed TRNG method

pull/341/head
jgromes 2021-07-18 10:17:41 +02:00
rodzic d645f5ab73
commit fd9448e5f1
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -505,7 +505,7 @@ int16_t nRF24::setEncoding(uint8_t encoding) {
return(ERR_NONE);
}
uint8_t nRF24::random() {
uint8_t nRF24::randomByte() {
// nRF24 is unable to measure RSSI, hence no TRNG
// this method is implemented only for PhysicalLayer compatibility
return(0);

Wyświetl plik

@ -469,7 +469,7 @@ class nRF24: public PhysicalLayer {
\returns Always returns 0.
*/
uint8_t random();
uint8_t randomByte();
/*!
\brief Dummy method, to ensure PhysicalLayer compatibility.