/******************************************************************************* * Copyright (c) 2011, 2016 Eurotech and/or its affiliates * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eurotech *******************************************************************************/ package org.eclipse.kura.linux.net.modem; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class De910ModemDriver extends OptionModemDriver { private static final Logger s_logger = LoggerFactory.getLogger(De910ModemDriver.class); private static final String s_vendor = "1bc7"; private static final String s_product = "1010"; public De910ModemDriver() { super(s_vendor, s_product); } @Override public int install() throws Exception { s_logger.info("Installing {} driver for Telit DE910 modem", getName()); return super.install(); } }