mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 08:38:45 +00:00
Introduce a wizard for adding realtime devices since it is prone to user error, is relatively complicated and is something most users will only ever do once or twice. There are several logical updates within this patch: First; Fix intermittent ANT+ not working * LibUsb - check bufRemaining is > 0 not non-zero * LibUsb - Always reset the USB stick on open * ANT.cpp - Support > 4 channels on USB2 * ANTChannel - Do not use pairing, but always * unassign, assign and set channel id. Second; Fix device discovery * Find and discover support in realtime controllers * Extend Serial.cpp to cover more Serial devices * Support for 4 or 8 ANT channels for USB1/USB2 Third; Introduce Add Device Wizard with * General and Specific wizard pages for each device type * Device pairing with telemetry display * fixed compile time warnings Fourth; Update Device Config Page * use wizard to add new device * remove edit fields, replaced by wizard * remove pair, firmware buttons replaced by wizard Fifth; Deprecate/Remove Device Types * Null Device - used by developers only * Quarqd client - replaced by Native ANT+ * GC Server - not implemented yet I have also introduced a device specific wheel size and flags for controlling the default selection and sources for sensor data when in multi-device mode. These are not yet supported in the code. Fixes #611. Fixes #497.
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2009 Mark Liversedge (liversedge@gmail.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program 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 General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
|
|
// Lists all the devices configured in preferences
|
|
|
|
#ifndef _GC_DeviceConfiguration_h
|
|
#define _GC_DeviceConfiguration_h
|
|
#include "GoldenCheetah.h"
|
|
|
|
class RealtimeController;
|
|
|
|
class DeviceConfiguration
|
|
{
|
|
public: // direct update to class vars from deviceModel!
|
|
DeviceConfiguration();
|
|
|
|
int type;
|
|
QString name,
|
|
portSpec,
|
|
deviceProfile; // device specific data
|
|
// used by ANT to store ANTIDs
|
|
// available for use by all devices
|
|
|
|
QString defaultString; // PHCS for power/heartrate/cadence/speed from this device
|
|
int wheelSize; // set wheel size for each device
|
|
int postProcess; // virtualChannel
|
|
|
|
RealtimeController *controller; // can be used to allocate controller for this device
|
|
// although a bit odd, it makes synchronising the config
|
|
// with runtime allocation a bit simpler in traintool
|
|
// we could subclass and add our own, but this aint so bad
|
|
};
|
|
|
|
class DeviceConfigurations
|
|
{
|
|
public:
|
|
DeviceConfigurations();
|
|
~DeviceConfigurations();
|
|
|
|
QList<DeviceConfiguration> getList();
|
|
|
|
// serialise/deserialise config
|
|
QList<DeviceConfiguration> readConfig();
|
|
void writeConfig(QList<DeviceConfiguration>);
|
|
|
|
private:
|
|
QList<DeviceConfiguration> Entries; // all the Configurations
|
|
|
|
};
|
|
|
|
#endif
|