You've already forked arduino-LoRa
mirror of
https://github.com/sandeepmistry/arduino-LoRa.git
synced 2025-07-10 22:00:57 +03:00
Rename crc()/noCrc() to enableCrc()/disableCrc()
This commit is contained in:
@ -48,8 +48,12 @@ public:
|
||||
void setCodingRate4(int denominator);
|
||||
void setPreambleLength(long length);
|
||||
void setSyncWord(int sw);
|
||||
void crc();
|
||||
void noCrc();
|
||||
void enableCrc();
|
||||
void disableCrc();
|
||||
|
||||
// deprecated
|
||||
void crc() { enableCrc(); }
|
||||
void noCrc() { disableCrc(); }
|
||||
|
||||
byte random();
|
||||
|
||||
|
Reference in New Issue
Block a user