-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathftmsdevice.cpp
329 lines (286 loc) · 12.1 KB
/
ftmsdevice.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
#include "ftmsdevice.h"
#include <QDataStream>
#include <QTimer>
#include "fecdevice.h"
#define FTMSDEVICE_FTMS_UUID 0x1826
#define FTMSDEVICE_INDOOR_BIKE_CHAR_UUID 0x2AD2
#define FTMSDEVICE_POWER_RANGE_CHAR_UUID 0x2AD8
#define FTMSDEVICE_RESISTANCE_RANGE_CHAR_UUID 0x2AD6
#define FTMSDEVICE_FTMS_FEATURE_CHAR_UUID 0x2ACC
#define FTMSDEVICE_FTMS_CONTROL_POINT_CHAR_UUID 0x2AD9
#define FTMSDEVICE_FTMS_STATUS_CHAR_UUID 0x2ADA
FTMSDevice::FTMSDevice(unsigned short int devId, QObject *parent) : QObject(parent),
m_currentHeartrate(0),
m_currentPower(0),
m_currentCadence(0),
m_currentSpeed(0),
m_devId(devId),
m_isControllable(false),
m_isSimulation(false)
{
}
enum FtmsControlPointCommand {
FTMS_REQUEST_CONTROL = 0x00,
FTMS_RESET,
FTMS_SET_TARGET_SPEED,
FTMS_SET_TARGET_INCLINATION,
FTMS_SET_TARGET_RESISTANCE_LEVEL,
FTMS_SET_TARGET_POWER,
FTMS_SET_TARGET_HEARTRATE,
FTMS_START_RESUME,
FTMS_STOP_PAUSE,
FTMS_SET_TARGETED_EXP_ENERGY,
FTMS_SET_TARGETED_STEPS,
FTMS_SET_TARGETED_STRIDES,
FTMS_SET_TARGETED_DISTANCE,
FTMS_SET_TARGETED_TIME,
FTMS_SET_TARGETED_TIME_TWO_HR_ZONES,
FTMS_SET_TARGETED_TIME_THREE_HR_ZONES,
FTMS_SET_TARGETED_TIME_FIVE_HR_ZONES,
FTMS_SET_INDOOR_BIKE_SIMULATION_PARAMS,
FTMS_SET_WHEEL_CIRCUMFERENCE,
FTMS_SPIN_DOWN_CONTROL,
FTMS_SET_TARGETED_CADENCE,
FTMS_RESPONSE_CODE = 0x80
};
enum FtmsResultCode {
FTMS_SUCCESS = 0x01,
FTMS_NOT_SUPPORTED,
FTMS_INVALID_PARAMETER,
FTMS_OPERATION_FAILED,
FTMS_CONTROL_NOT_PERMITTED
};
void FTMSDevice::initialize()
{
// Make sure it's only initialized once
static bool isInitialized = false;
if (isInitialized == true)
{
return;
}
isInitialized = true;
// Setup up the advertising properly
m_advertisingData.setDiscoverability(QLowEnergyAdvertisingData::DiscoverabilityGeneral);
m_advertisingData.setIncludePowerLevel(true); // Switch to false?
m_advertisingData.setLocalName(QString("M %1").arg(m_devId)); // Use short name to save bytes
m_advertisingData.setServices(QList<QBluetoothUuid>() << QBluetoothUuid((quint16)FTMSDEVICE_FTMS_UUID));
// Setup of indoorBike characteristic
m_indoorBikeCharData.setUuid(QBluetoothUuid((quint16)FTMSDEVICE_INDOOR_BIKE_CHAR_UUID));
m_indoorBikeCharData.setProperties(QLowEnergyCharacteristic::Notify);
m_indoorBikeClientConfig = QLowEnergyDescriptorData(QBluetoothUuid::ClientCharacteristicConfiguration,
QByteArray(2, 0));
m_indoorBikeCharData.addDescriptor(m_indoorBikeClientConfig);
if (m_isControllable)
{
// Setup of powerRange characteristic
m_powerRangeCharData.setUuid(QBluetoothUuid((quint16)FTMSDEVICE_POWER_RANGE_CHAR_UUID));
QByteArray powerRangeData;
QDataStream powerRangeCharDataDs(&powerRangeData, QIODevice::ReadWrite);
qint16 maxPwr = 1400;
qint16 minPwr = 0;
quint16 stepPwr = 1;
powerRangeCharDataDs.setByteOrder(QDataStream::LittleEndian);
powerRangeCharDataDs << minPwr << maxPwr << stepPwr;
m_powerRangeCharData.setValue(powerRangeData);
m_powerRangeCharData.setProperties(QLowEnergyCharacteristic::Read);
m_powerRangeClientConfig = QLowEnergyDescriptorData(QBluetoothUuid::ClientCharacteristicConfiguration,
QByteArray(2, 0));
m_powerRangeCharData.addDescriptor(m_powerRangeClientConfig);
// Setup of resistanceRange characteristic
m_resistanceRangeCharData.setUuid(QBluetoothUuid((quint16)FTMSDEVICE_RESISTANCE_RANGE_CHAR_UUID));
QByteArray resistanceRangeData;
QDataStream resistanceRangeCharDataDs(&resistanceRangeData, QIODevice::ReadWrite);
qint16 maxRes = 70;
qint16 minRes = 0;
quint16 stepRes = 1;
resistanceRangeCharDataDs.setByteOrder(QDataStream::LittleEndian);
resistanceRangeCharDataDs << minRes << maxRes << stepRes;
m_resistanceRangeCharData.setValue(resistanceRangeData);
m_resistanceRangeCharData.setProperties(QLowEnergyCharacteristic::Read);
m_resistanceRangeClientConfig = QLowEnergyDescriptorData(QBluetoothUuid::ClientCharacteristicConfiguration,
QByteArray(2, 0));
m_resistanceRangeCharData.addDescriptor(m_resistanceRangeClientConfig);
}
// Setup of ftmsFeature characteristic
m_ftmsFeatureCharData.setUuid(QBluetoothUuid((quint16)FTMSDEVICE_FTMS_FEATURE_CHAR_UUID));
QByteArray ftmsFeatureCharDataRaw;
QDataStream ftmsFeatureCharDataDs(&ftmsFeatureCharDataRaw, QIODevice::ReadWrite);
ftmsFeatureCharDataDs.setByteOrder(QDataStream::LittleEndian);
quint32 features, settings;
if (m_isControllable)
{
// 10987654321098765432109876543210
features = 0b00000000000000000100000010000010;
settings = 0b00000000000000000010000000001100;
} else {
// 10987654321098765432109876543210
features = 0b00000000000000000100000000000010;
settings = 0b00000000000000000000000000000000;
}
ftmsFeatureCharDataDs << features << settings;
m_ftmsFeatureCharData.setValue(ftmsFeatureCharDataRaw);
m_ftmsFeatureCharData.setProperties(QLowEnergyCharacteristic::Read);
m_ftmsFeatureClientConfig = QLowEnergyDescriptorData(QBluetoothUuid::ClientCharacteristicConfiguration,
QByteArray(2, 0));
m_ftmsFeatureCharData.addDescriptor(m_ftmsFeatureClientConfig);
// Setup of m_ftmsControlPoint characteristic
m_ftmsControlPointCharData.setUuid(QBluetoothUuid((quint16)0x2AD9));
m_ftmsControlPointCharData.setProperties(QLowEnergyCharacteristic::Write | QLowEnergyCharacteristic::Indicate);
const QLowEnergyDescriptorData cpClientConfig(QBluetoothUuid::ClientCharacteristicConfiguration,
QByteArray(2, 0));
m_ftmsControlPointCharData.addDescriptor(cpClientConfig);
// Setup of ftmsStatus characteristic
m_ftmsStatusCharData.setUuid(QBluetoothUuid((quint16)FTMSDEVICE_FTMS_STATUS_CHAR_UUID));
m_ftmsStatusCharData.setProperties(QLowEnergyCharacteristic::Notify);
m_ftmsStatusClientConfig = QLowEnergyDescriptorData(QBluetoothUuid::ClientCharacteristicConfiguration,
QByteArray(2, 0));
m_ftmsStatusCharData.addDescriptor(m_ftmsStatusClientConfig);
// Final setup (Note that order of chars seems to matter?!)
m_ftmsServiceData.setType(QLowEnergyServiceData::ServiceTypePrimary);
m_ftmsServiceData.setUuid(QBluetoothUuid((quint16)FTMSDEVICE_FTMS_UUID));
m_ftmsServiceData.addCharacteristic(m_indoorBikeCharData);
m_ftmsServiceData.addCharacteristic(m_ftmsControlPointCharData);
m_ftmsServiceData.addCharacteristic(m_ftmsFeatureCharData);
m_ftmsServiceData.addCharacteristic(m_ftmsStatusCharData);
if (m_isControllable)
{
m_ftmsServiceData.addCharacteristic(m_powerRangeCharData);
m_ftmsServiceData.addCharacteristic(m_resistanceRangeCharData);
}
m_controller = QLowEnergyController::createPeripheral();
m_ftmsService = m_controller->addService(m_ftmsServiceData);
// Start advertising
m_controller->startAdvertising(QLowEnergyAdvertisingParameters(), m_advertisingData,
m_advertisingData);
// Set up connection for incoming FTMS CP requests
QObject::connect(m_ftmsService, &QLowEnergyService::characteristicChanged, this, &FTMSDevice::onIncomingControlPointCommand);
connect(&m_updateTimer, &QTimer::timeout, this, &FTMSDevice::sendCurrentValues);
m_updateTimer.start(1000);
connect(m_controller, &QLowEnergyController::disconnected, this, &FTMSDevice::restartAdvertising);
}
void FTMSDevice::onIncomingControlPointCommand(QLowEnergyCharacteristic c ,QByteArray b)
{
//qDebug() << "Write to " << c.uuid();
//qDebug() << b;
Q_ASSERT(b.size() >= 1);
// Prepare for reply
QLowEnergyCharacteristic characteristic
= m_ftmsService->characteristic(QBluetoothUuid((quint16)FTMSDEVICE_FTMS_CONTROL_POINT_CHAR_UUID));
Q_ASSERT(characteristic.isValid());
QByteArray reply;
QDataStream replyDs(&reply, QIODevice::ReadWrite);
replyDs.setByteOrder(QDataStream::LittleEndian);
// Set up a stream from parsing command
QDataStream inData(&b, QIODevice::ReadOnly);
inData.setByteOrder(QDataStream::LittleEndian);
quint8 cmd;
inData >> cmd;
switch (static_cast<FtmsControlPointCommand>(cmd))
{
case FTMS_REQUEST_CONTROL:
//qDebug() << "Control requested";
replyDs << (quint8)FTMS_RESPONSE_CODE << (quint8)FTMS_REQUEST_CONTROL << (quint8)FTMS_SUCCESS;
break;
case FTMS_RESET:
emit newTargetPower(100);
setSimulationMode(false);
replyDs << (quint8)FTMS_RESPONSE_CODE << (quint8)FTMS_RESET << (quint8)FTMS_SUCCESS ;
break;
case FTMS_START_RESUME:
replyDs << (quint8)FTMS_RESPONSE_CODE << (quint8)FTMS_START_RESUME << (quint8)FTMS_SUCCESS ;
break;
case FTMS_SET_TARGET_RESISTANCE_LEVEL:
{
qint8 requestedResistanceLevel;
inData >> requestedResistanceLevel;
setSimulationMode(false);
emit newTargetKp(requestedResistanceLevel/10.0);
replyDs << (quint8)FTMS_RESPONSE_CODE << (quint8)FTMS_SET_TARGET_RESISTANCE_LEVEL << (quint8)FTMS_SUCCESS ;
}
break;
case FTMS_SET_TARGET_POWER:
{
qint16 targetPower;
inData >> targetPower;
replyDs << (quint8)FTMS_RESPONSE_CODE << (quint8)FTMS_SET_TARGET_POWER << (quint8)FTMS_SUCCESS;
setSimulationMode(false);
emit newTargetPower(targetPower);
//qDebug() << "New Target Power: " << targetPower;
}
break;
case FTMS_SET_INDOOR_BIKE_SIMULATION_PARAMS:
{
qint16 windSpeed, grade;
quint8 crr, cw;
inData >> windSpeed;
inData >> grade;
inData >> crr;
inData >> cw;
//qDebug() << "New grade: " << grade;
setSimulationMode(true);
emit newGrade(grade/100.0);
replyDs << (quint8)FTMS_RESPONSE_CODE << (quint8)FTMS_SET_INDOOR_BIKE_SIMULATION_PARAMS << (quint8)FTMS_SUCCESS;
}
break;
default:
qDebug() << "Unhandled command:" << cmd;
}
if (!reply.isEmpty())
{
//qDebug() << reply;
m_ftmsService->writeCharacteristic(characteristic, reply);
}
};
void FTMSDevice::sendCurrentValues()
{
// bits 5432109876543210
quint16 charFlags = 0b0000000001000100; // insta cadance and power
QByteArray charData;
QDataStream charDataDs(&charData, QIODevice::ReadWrite);
charDataDs.setByteOrder(QDataStream::LittleEndian);
charDataDs << charFlags << m_currentSpeed << (quint16)(m_currentCadence*2) << m_currentPower;
QLowEnergyCharacteristic characteristic
= m_ftmsService->characteristic(QBluetoothUuid((quint16)FTMSDEVICE_INDOOR_BIKE_CHAR_UUID));
Q_ASSERT(characteristic.isValid());
m_ftmsService->writeCharacteristic(characteristic, charData); // Potentially causes notification.
}
void FTMSDevice::setCurrentPower(qint16 power)
{
m_currentPower = power;
}
void FTMSDevice::setCurrentCadence(quint8 cadence)
{
m_currentCadence = cadence;
}
void FTMSDevice::setCurrentHeartRate(quint8 heartRate)
{
m_currentHeartrate = heartRate;
}
void FTMSDevice::restartAdvertising()
{
m_ftmsService = m_controller->addService(m_ftmsServiceData);
if (m_ftmsService)
{
m_controller->startAdvertising(QLowEnergyAdvertisingParameters(),
m_advertisingData, m_advertisingData);
}
}
void FTMSDevice::setControllable(bool isControllable)
{
m_isControllable = isControllable;
}
void FTMSDevice::setSimulationMode(bool isSimulation)
{
if (m_isSimulation != isSimulation)
{
m_isSimulation = isSimulation;
if (m_isSimulation)
{
emit simulationModeChanged(FECDevice::FecMode::FEC_SIMULATION);
}
else
{
emit simulationModeChanged(FECDevice::FecMode::FEC_ERG);
}
}
}