1
0
mirror of https://github.com/sandeepmistry/arduino-LoRa.git synced 2025-09-04 14:42:10 +03:00

Rename crc()/noCrc() to enableCrc()/disableCrc()

This commit is contained in:
Sandeep Mistry
2017-05-07 21:11:39 -04:00
parent c0a438908b
commit 2f20d9902d
4 changed files with 12 additions and 8 deletions

4
API.md
View File

@@ -297,9 +297,9 @@ LoRa.setSyncWord(syncWord);
Enable or disable CRC usage, by default a CRC is not used.
```arduino
LoRa.crc();
LoRa.enableCrc();
LoRa.noCrc();
LoRa.disableCrc();
```
## Other functions