diff options
author | David Marcaccini <david.marcaccini@multitech.com> | 2019-03-21 10:33:34 -0500 |
---|---|---|
committer | David Marcaccini <david.marcaccini@multitech.com> | 2019-03-21 10:33:34 -0500 |
commit | aa8ffb828e1c6ae0becbab05edf9be53373ba783 (patch) | |
tree | 6b07fdb50121f7e151a509f6ad9cd5aa7d7d685f /src/MTS_IO_LE910C4NFRadio.cpp | |
parent | 1b2ea34757d16fd5206c130e6269766bb80a7e13 (diff) | |
download | libmts-io-aa8ffb828e1c6ae0becbab05edf9be53373ba783.tar.gz libmts-io-aa8ffb828e1c6ae0becbab05edf9be53373ba783.tar.bz2 libmts-io-aa8ffb828e1c6ae0becbab05edf9be53373ba783.zip |
Add support for L4E1 and L4N1 radios1.0.17
Diffstat (limited to 'src/MTS_IO_LE910C4NFRadio.cpp')
-rw-r--r-- | src/MTS_IO_LE910C4NFRadio.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/MTS_IO_LE910C4NFRadio.cpp b/src/MTS_IO_LE910C4NFRadio.cpp new file mode 100644 index 0000000..53348f7 --- /dev/null +++ b/src/MTS_IO_LE910C4NFRadio.cpp @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2019 by Multi-Tech Systems + * + * This file is part of libmts-io. + * + * libmts-io is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * libmts-io is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with libmts-io. If not, see <http://www.gnu.org/licenses/>. + * + */ + +#include <mts/MTS_IO_LE910C4NFRadio.h> + +using namespace MTS::IO; + +const std::string LE910C4NFRadio::MODEL_NAME("LE910C4-NF"); + +LE910C4NFRadio::LE910C4NFRadio(const std::string& sPort) +: LE910Radio(MODEL_NAME, sPort) +{ + +} + |