| 7 | #include "MeasureRSSI.h" |
| 8 | |
| 9 | MeasureRSSI::MeasureRSSI(const unsigned long period, const unsigned int cycle, const uint8_t points) : |
| 10 | period(period), |
| 11 | points(points), |
| 12 | _cycle(cycle) |
| 13 | { |
| 14 | _n = 0; |
| 15 | _tm = millis(); |
| 16 | _tmCycle = _tm; |
| 17 | } |
| 18 | |
| 19 | MeasureRSSI::~MeasureRSSI() { |
| 20 | if (_rssi) |
nothing calls this directly
no outgoing calls
no test coverage detected