Files
BionxControl/bcvalue.h

198 lines
4.5 KiB
C
Raw Normal View History

2025-12-15 23:05:48 +01:00
/***************************************************************************
2025-12-26 14:07:55 +01:00
BionxControl
Copyright © 2025 christoph holzheuer
christoph.holzheuer@gmail.com
Using:
mhs_can_drv.c
© 2011 - 2023 by MHS-Elektronik GmbH & Co. KG, Germany
Klaus Demlehner, klaus@mhs-elektronik.de
@see www.mhs-elektronik.de
Based on Bionx data type descriptions from:
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
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-15 23:05:48 +01:00
***************************************************************************/
2025-12-28 22:48:18 +01:00
#ifndef BCVALUE_H
#define BCVALUE_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
2025-12-29 15:44:06 +01:00
ausgelesen und geschrieben (Siehe BCValueTypeWord). Sie können also Wert-Typen zugeordnet werden. Ein Werttyp
2025-12-19 13:24:18 +01:00
lässet über eine ID identifizieren, die mit der phyikalische Einheit des Wertes überschneiden kann,
2025-12-24 12:11:59 +01:00
aber nicht muss: : Km/h, kWh, BCValueTypeWord ... bilden eigene Typen, SoC, Assistence Level sind auch eigene Typen,
2025-12-19 13:24:18 +01:00
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
2025-12-29 15:44:06 +01:00
/**
* @brief BCAbstractTransmitter ist das abstrakte Basisinterface für die eigentliche
* Datenübertragung auf Treiberebene.
*/
class BCAbstractTransmitter
{
public:
2026-01-01 13:28:17 +01:00
virtual uint8_t readByte ( uint32_t deviceID, uint8_t registerID ) const = 0;
virtual void writeByte( uint32_t deviceID, uint8_t registerID, uint8_t value_ ) const = 0;
};
2025-12-24 12:11:59 +01:00
class BCValueType;
2025-12-23 20:47:03 +01:00
2025-12-28 22:48:18 +01:00
class BCValue
2025-12-15 23:05:48 +01:00
{
public:
enum class OpID : uint8_t
{
ReadValue,
WriteValue,
};
enum class State : uint8_t
{
2026-01-01 22:27:48 +01:00
NoState = 0x0,
ReadOnly = 0x1,
Locked = 0x2,
Failed = 0x4,
InSync = 0x8,
OK = 0x10
};
2026-01-01 22:27:48 +01:00
Q_DECLARE_FLAGS(States, State )
2025-12-28 22:48:18 +01:00
BCValue( const BCValueType* valueType_, BCDevice::ID deviceID_, BC::ID registerID_ );
2025-12-15 23:05:48 +01:00
QString readRawValueX( const BCAbstractTransmitter& transmitter ) const;
2026-01-01 22:27:48 +01:00
void writeRawValueX( const BCAbstractTransmitter& transmitter ) const;
// void reset()
2026-01-01 22:27:48 +01:00
// später vielleicht
2025-12-26 23:09:53 +01:00
//protected:
2026-01-01 22:27:48 +01:00
mutable States state{BCValue::State::NoState};
2025-12-24 12:11:59 +01:00
//const BCValueType& valueType;
//BCValueTypeCRef valueType;
const BCValueType* valueType{};
BCDevice::ID deviceID{BCDevice::ID::Invalid};
BC::ID registerID{BC::ID::Invalid};
2025-12-28 22:48:18 +01:00
int indexRow{-1};
2025-12-24 12:11:59 +01:00
QString label;
2025-12-26 23:09:53 +01:00
// ??
2025-12-24 12:11:59 +01:00
mutable QString visibleValue;
QVariant defaultValue;
2025-12-28 22:48:18 +01:00
//??
2025-12-24 12:11:59 +01:00
bool inSync{false};
bool readOnly{false};
2025-12-20 01:23:57 +01:00
2025-12-24 12:11:59 +01:00
//mutable std::optional<uint32_t> rawValue;
2025-12-15 20:57:09 +01:00
};
2026-01-01 22:27:48 +01:00
Q_DECLARE_OPERATORS_FOR_FLAGS(BCValue::States)
2025-12-29 15:44:06 +01:00
Q_DECLARE_METATYPE(const BCValue*)
//Q_DECLARE_METATYPE(const BCValue&)
2025-12-17 17:50:24 +01:00
2025-12-28 22:48:18 +01:00
//using BCValueList = QList<BCValue>;
2025-12-23 20:47:03 +01:00
2025-12-28 22:48:18 +01:00
class BCValueList : public QList<BCValue>
2025-12-27 18:43:15 +01:00
{
public:
2025-12-23 20:47:03 +01:00
2025-12-27 18:43:15 +01:00
BCValueList()
{
qDebug() << "BC Construct: " << this;
}
BCValueList(const BCValueList& other)
2025-12-28 22:48:18 +01:00
: QList<BCValue>(other)
2025-12-27 18:43:15 +01:00
{
qDebug() << "BC: Copy from: " << &other << "to" << this;
}
BCValueList(BCValueList&& other) noexcept
2025-12-28 22:48:18 +01:00
: QList<BCValue>( other )
2025-12-27 18:43:15 +01:00
{
qDebug() << "Move from: " << &other << "to" << this;
}
// Copy Assignment Operator
BCValueList& operator=(const BCValueList& other)
{
2025-12-29 20:10:05 +01:00
qDebug() << "BC copy assignment: " << this;
2025-12-28 22:48:18 +01:00
QList<BCValue>::operator=( other );
2025-12-27 18:43:15 +01:00
return *this;
}
// Move Assignment Operator
BCValueList& operator=(BCValueList&& other) noexcept
{
2025-12-29 20:10:05 +01:00
qDebug() << "BC move assignment: " << this;
2025-12-28 22:48:18 +01:00
QList<BCValue>::operator=( other );
2025-12-27 18:43:15 +01:00
return *this;
}
~BCValueList()
{
qDebug() << "Destruct: " << this;
}
};
Q_DECLARE_METATYPE(BCValueList)
2025-12-23 20:47:03 +01:00
2025-12-17 17:50:24 +01:00
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-23 20:47:03 +01:00
2025-12-15 20:57:09 +01:00
2025-12-28 22:48:18 +01:00
#endif // BCVALUE_H