author | harlekin <harlekin> | 2003-01-16 19:50:06 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-01-16 19:50:06 (UTC) |
commit | 7957a2f100eb687e63cd3593097c5914539c7406 (patch) (side-by-side diff) | |
tree | 323aaf6d34669f523532d41385560c3894ed5c59 | |
parent | eac64456fb43afe2200e4e545e1e4be3b4eb1bc8 (diff) | |
download | opie-7957a2f100eb687e63cd3593097c5914539c7406.zip opie-7957a2f100eb687e63cd3593097c5914539c7406.tar.gz opie-7957a2f100eb687e63cd3593097c5914539c7406.tar.bz2 |
lib a bit more flexible for hciattach arguments
-rw-r--r-- | noncore/net/opietooth/lib/device.cc | 8 | ||||
-rw-r--r-- | noncore/net/opietooth/lib/device.h | 5 |
2 files changed, 9 insertions, 4 deletions
diff --git a/noncore/net/opietooth/lib/device.cc b/noncore/net/opietooth/lib/device.cc index 5edfc03..bae1c47 100644 --- a/noncore/net/opietooth/lib/device.cc +++ b/noncore/net/opietooth/lib/device.cc @@ -24,6 +24,7 @@ namespace { } -Device::Device(const QString &device, const QString &mode ) +Device::Device(const QString &device, const QString &mode, const QString &speed ) : QObject(0, "device" ) { + qWarning("OpieTooth::Device create" ); m_hci = 0; @@ -32,4 +33,5 @@ Device::Device(const QString &device, const QString &mode ) m_device = device; m_mode = mode; + m_speed = speed; attach(); } @@ -38,5 +40,5 @@ Device::~Device(){ } void Device::attach(){ - qWarning("attaching %s %s", m_device.latin1(), m_mode.latin1() ); + qWarning("attaching %s %s %s", m_device.latin1(), m_mode.latin1(), m_speed.latin1() ); if(m_process == 0 ){ m_output.resize(0); @@ -45,5 +47,5 @@ void Device::attach(){ *m_process << "hciattach"; *m_process << "-p"; - *m_process << m_device << m_mode; + *m_process << m_device << m_mode << m_speed; connect(m_process, SIGNAL( processExited(OProcess*) ), this, SLOT( slotExited(OProcess* ) ) ); diff --git a/noncore/net/opietooth/lib/device.h b/noncore/net/opietooth/lib/device.h index c0e2658..ce7fccc 100644 --- a/noncore/net/opietooth/lib/device.h +++ b/noncore/net/opietooth/lib/device.h @@ -17,4 +17,5 @@ namespace OpieTooth { */ class Device : public QObject { + Q_OBJECT @@ -27,6 +28,7 @@ namespace OpieTooth { * @param &device QString the device name * @param &mode QString the mode + * @param &speed QString the speed of the device, can be left blank */ - Device(const QString &device, const QString& mode); + Device(const QString &device, const QString& mode, const QString& speed); /** @@ -78,4 +80,5 @@ namespace OpieTooth { QString m_devId; QString m_mode; + QString m_speed; pid_t pid; QCString m_output; |