[Module] Fixed incorrect arguments

pull/117/head
jgromes 2020-02-20 12:38:51 +01:00
rodzic 1a75ff837e
commit 16073f05ea
1 zmienionych plików z 7 dodań i 10 usunięć

Wyświetl plik

@ -73,16 +73,13 @@ void Module::init(uint8_t interface) {
}
void Module::term() {
// stop hardware interface
switch(interface) {
case RADIOLIB_USE_SPI:
_spi->end();
break;
case RADIOLIB_USE_UART:
ModuleSerial->end(baudrate, SERIAL_8N1, _rx, _tx);
break;
case RADIOLIB_USE_I2C:
break;
// stop hardware interfaces
if(_spi != nullptr) {
_spi->end();
}
if(ModuleSerial != nullptr) {
ModuleSerial->end();
}
}