Made 'syncFromDevice' work again.

This commit is contained in:
2025-12-28 22:48:18 +01:00
parent 517dcceb81
commit b7d4441d56
20 changed files with 167 additions and 916 deletions

20
bc.h
View File

@@ -110,14 +110,7 @@ constexpr auto to_u(E e) noexcept {
#pragma once
#include <QLatin1StringView>
namespace Consts {
using namespace Qt::Literals::StringLiterals;
// 1. Compile-Time Konstante (constexpr)
// 2. Kein Heap-Speicher (Zero Allocation)
// 3. Minimale Binary-Größe (1 Byte char) <- 8 Bit!
// Beste Performance, keine Allokation, Typ-Sicher
inline constexpr auto OrgName = "source::worx"_L1;
}
*/
struct BC
@@ -133,6 +126,17 @@ public:
};
Q_ENUM(OpID)
// __fix! flags draus machen ?
enum class State : uint8_t
{
Invalid,
Locked,
Failed,
InSync,
OK
};
Q_ENUM(State)
enum class ID : uint8_t
{
//{%Region Console}