summaryrefslogtreecommitdiff
path: root/packages/python/python-native-2.4.0/cross-distutils.patch
AgeCommit message (Collapse)AuthorFiles
2005-06-30import clean BK tree at cset 1.3670Koen Kooi1
2005-02-08make python 2.4 as default, move python-sip into python/, make sip4 as defaultMichael Lauer1
BKrev: 4208ff7b-sgl7QbT_1xhYPmdi-Oy4g
class="hl com"> * 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/>. * */ /*! \file MTS_IO_DE910Radio.cpp \brief A brief description \date Nov 6, 2014 \author sgodinez A more elaborate description */ #include <mts/MTS_IO_DE910Radio.h> using namespace MTS::IO; const std::string DE910Radio::MODEL_NAME("DE910-DUAL"); DE910Radio::DE910Radio(const std::string& sPort) : CdmaRadio(MODEL_NAME, sPort) { } CellularRadio::CODE DE910Radio::setRxDiversity(const Json::Value& jArgs) { /* Command string for EV3 radios: AT#CRXD= */ if (jArgs["enabled"].asString() != "1" && jArgs["enabled"].asString() != "0") { return FAILURE; } std::string sCmd = "AT#CRXD="; sCmd += jArgs["enabled"].asString(); return sendBasicCommand(sCmd); }