[SX128x] Added Doxygen TODOs
This commit is contained in:
parent
6452ea401f
commit
a1583487b0
3 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
||||||
#include "SX1282.h"
|
#include "SX1282.h"
|
||||||
#if !defined(RADIOLIB_EXCLUDE_SX128X)
|
#if !defined(RADIOLIB_EXCLUDE_SX128X)
|
||||||
|
|
||||||
|
/// \todo implement advanced ranging
|
||||||
SX1282::SX1282(Module* mod) : SX1280(mod) {
|
SX1282::SX1282(Module* mod) : SX1280(mod) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
#include "SX128x.h"
|
#include "SX128x.h"
|
||||||
#include "SX1280.h"
|
#include "SX1280.h"
|
||||||
|
|
||||||
// TODO implement advanced ranging
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\class SX1282
|
\class SX1282
|
||||||
|
|
||||||
|
|
|
@ -890,7 +890,7 @@ int16_t SX128x::setSyncWord(uint8_t* syncWord, uint8_t len) {
|
||||||
if(_syncWordLen == 0) {
|
if(_syncWordLen == 0) {
|
||||||
_syncWordMatch = SX128X_GFSK_FLRC_SYNC_WORD_OFF;
|
_syncWordMatch = SX128X_GFSK_FLRC_SYNC_WORD_OFF;
|
||||||
} else {
|
} else {
|
||||||
// TODO add support for multiple sync words
|
/// \todo add support for multiple sync words
|
||||||
_syncWordMatch = SX128X_GFSK_FLRC_SYNC_WORD_1;
|
_syncWordMatch = SX128X_GFSK_FLRC_SYNC_WORD_1;
|
||||||
}
|
}
|
||||||
return(setPacketParamsGFSK(_preambleLengthGFSK, _syncWordLen, _syncWordMatch, _crcGFSK, _whitening));
|
return(setPacketParamsGFSK(_preambleLengthGFSK, _syncWordLen, _syncWordMatch, _crcGFSK, _whitening));
|
||||||
|
@ -1093,7 +1093,7 @@ uint32_t SX128x::getTimeOnAir(size_t len) {
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// long interleaving - abandon hope all ye who enter here
|
// long interleaving - abandon hope all ye who enter here
|
||||||
// TODO implement this mess - SX1280 datasheet v3.0 section 7.4.4.2
|
/// \todo implement this mess - SX1280 datasheet v3.0 section 7.4.4.2
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue