Files
BionxControl/bcdata.h

175 lines
3.6 KiB
C
Raw Normal View History

2025-12-15 23:05:48 +01:00
/***************************************************************************
BionxControl
Copyright © 2025 christoph holzheuer
christoph.holzheuer@gmail.com
Using:
BigXionFlasher USB V 0.2.4 rev. 97
© 2011-2013 by Thomas Koenig <info@bigxionflasher.org>
@see www.bigxionflasher.org
Bionx Bike Info
© 2018 Thorsten Schmidt (tschmidt@ts-soft.de)
@see www.ts-soft.de
mhs_can_drv.c 3.00
© 2011 - 2015 by MHS-Elektronik GmbH & Co. KG, Germany
Demlehner Klaus, info@mhs-elektronik.de
@see www.mhs-elektronik.de
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 3 of the License, or
(at your option) any later version.
@see https://github.com/bikemike/bionx-bikeinfo
***************************************************************************/
2025-12-22 21:27:20 +01:00
#ifndef BCDATA_H
#define BCDATA_H
2025-12-15 20:57:09 +01:00
2025-12-17 17:50:24 +01:00
#include <QObject>
2025-12-15 20:57:09 +01:00
#include <QString>
2025-12-15 23:05:48 +01:00
#include <QList>
2025-12-16 22:42:35 +01:00
#include <QVariant>
2025-12-15 23:05:48 +01:00
2025-12-15 20:57:09 +01:00
#include <bc.h>
2025-12-17 17:50:24 +01:00
/*
2025-12-19 13:24:18 +01:00
Werte haben verschiedene Längen (1,2 und 4 Byte) und werder auf unterschiedliche Art und Weise
ausgelesen und geschrieben (Siehe ODO). Sin können also Wert-Typen zugeordnet werden. Ein Werttyp
lässet über eine ID identifizieren, die mit der phyikalische Einheit des Wertes überschneiden kann,
aber nicht muss: : Km/h, kWh, ODO ... bilden eigene Typen, SoC, Assistence Level sind auch eigene Typen,
Teilen sich jedoch die Einheit '%'.
2025-12-17 17:50:24 +01:00
Das ist natürlich annalog zu den ItemTypes:
- ein Value hat einen ValueType, der bestimmt folgendes:
2025-12-18 09:30:43 +01:00
- long or short or quad
2025-12-17 17:50:24 +01:00
- unit (mm, km/h, odo ... )
-
*/
2025-12-19 13:24:18 +01:00
2025-12-21 14:40:38 +01:00
class BCAbstractTransmitter
{
public:
//
2025-12-21 18:31:16 +01:00
virtual bcdata_t readRawValue( BCDevice::ID deviceID_, BC::ID registerID_ ) const = 0;
virtual void writeRawValue( BCDevice::ID deviceID_, BC::ID registerID_, uint8_t value_ ) const = 0;
};
2025-12-16 22:42:35 +01:00
using optDouble = std::optional<double>;
2025-12-15 23:05:48 +01:00
2025-12-22 21:27:20 +01:00
struct BCDataType
2025-12-16 21:21:59 +01:00
{
2025-12-19 13:24:18 +01:00
2025-12-17 17:50:24 +01:00
Q_GADGET
2025-12-16 21:21:59 +01:00
2025-12-17 17:50:24 +01:00
public:
2025-12-16 21:21:59 +01:00
2025-12-17 17:50:24 +01:00
enum class TypeID : uint8_t
{
Invalid = 0x0,
Text,
Number,
Float,
2025-12-20 01:23:57 +01:00
Byte,
Word,
Quad,
2025-12-17 17:50:24 +01:00
Percent,
KWh,
2025-12-19 13:24:18 +01:00
Watt,
2025-12-17 17:50:24 +01:00
Km,
2025-12-19 13:24:18 +01:00
Kmh,
2025-12-17 17:50:24 +01:00
Mm,
Sec,
2025-12-18 09:30:43 +01:00
SoC,
Odo,
2025-12-19 13:24:18 +01:00
Assist,
AssistFac,
2025-12-17 17:50:24 +01:00
Date
2025-12-15 23:05:48 +01:00
};
2025-12-19 13:24:18 +01:00
Q_ENUM(TypeID)
2025-12-17 17:50:24 +01:00
2025-12-22 21:27:20 +01:00
BCDataType();
BCDataType( TypeID ID_, QString unitLabel_="", optDouble factor_=std::nullopt, optDouble min_=std::nullopt, optDouble max_= std::nullopt );
2025-12-15 20:57:09 +01:00
2025-12-20 01:23:57 +01:00
TypeID ID{TypeID::Invalid};
2025-12-19 13:24:18 +01:00
QString unitLabel;
optDouble factor;
2025-12-17 17:50:24 +01:00
optDouble min;
optDouble max;
2025-12-19 13:24:18 +01:00
2025-12-15 23:05:48 +01:00
};
2025-12-15 20:57:09 +01:00
2025-12-21 12:06:14 +01:00
// really needed?
2025-12-22 21:27:20 +01:00
using BCDataTypeCRef = std::optional<std::reference_wrapper<const BCDataType>>;
2025-12-20 01:23:57 +01:00
2025-12-22 21:27:20 +01:00
class BCData
2025-12-15 23:05:48 +01:00
{
public:
2025-12-22 21:27:20 +01:00
BCData( const BCDataType& valueType_, BCDevice::ID deviceID_, BC::ID registerID_ );
2025-12-15 23:05:48 +01:00
void readRawValue( const BCAbstractTransmitter& transmitter ) const;
void writeRawValue( const BCAbstractTransmitter& transmitter ) const;
// void reset()
2025-12-22 21:27:20 +01:00
BCDataTypeCRef valueType;
BCDevice::ID deviceID{BCDevice::ID::Invalid};
BC::ID registerID{BC::ID::Invalid};
int rowInModel{-1};
QString label;
QVariant value;
QVariant defaultValue;
2025-12-22 21:27:20 +01:00
bool inSync{false};
bool readOnly{false};
2025-12-20 01:23:57 +01:00
2025-12-21 14:40:38 +01:00
mutable std::optional<bcdata_t> rawValue;
2025-12-16 21:21:59 +01:00
2025-12-15 20:57:09 +01:00
};
2025-12-22 21:27:20 +01:00
Q_DECLARE_METATYPE(BCData*)
2025-12-15 20:57:09 +01:00
2025-12-17 17:50:24 +01:00
2025-12-22 21:27:20 +01:00
struct BCDataParams
2025-12-17 17:50:24 +01:00
{
QString ID;
QString Label;
QString Default;
QString UnitType;
};
2025-12-15 23:05:48 +01:00
// abbreviations:
// SOC = State Of Charge
// LMD = Last Measured Discharge
// NIP = ?
2025-12-15 20:57:09 +01:00
2025-12-15 23:05:48 +01:00
/*
2025-12-15 20:57:09 +01:00
2025-12-15 23:05:48 +01:00
Needed ?
#include <type_traits>
2025-12-15 20:57:09 +01:00
2025-12-15 23:05:48 +01:00
template <typename E>
constexpr auto to_u(E e) noexcept {
return static_cast<std::underlying_type_t<E>>(e);
}
*/
2025-12-22 21:27:20 +01:00
using BCDataList = QVector<BCData>;
2025-12-15 20:57:09 +01:00
2025-12-22 21:27:20 +01:00
#endif // BCDATA_H