025c9b3aee
Build Packages / Unit tests (push) Failing after 8m2s
Build Packages / build:rpm (rocky9_nocuda) (push) Failing after 9m20s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Failing after 9m19s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Failing after 9m51s
Build Packages / build:rpm (rocky8_nocuda) (push) Failing after 10m57s
Build Packages / build:rpm (rocky9_sls9) (push) Failing after 12m46s
Build Packages / build:rpm (rocky8_sls9) (push) Failing after 14m28s
Build Packages / build:rpm (rocky8) (push) Failing after 14m27s
Build Packages / Generate python client (push) Successful in 1m15s
Build Packages / Build documentation (push) Successful in 1m30s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky9) (push) Failing after 10m4s
Build Packages / build:rpm (ubuntu2404) (push) Failing after 10m8s
Build Packages / build:rpm (ubuntu2204) (push) Failing after 11m36s
Build Packages / XDS test (durin plugin) (push) Successful in 10m49s
Build Packages / XDS test (JFJoch plugin) (push) Successful in 9m18s
Build Packages / XDS test (neggia plugin) (push) Successful in 8m52s
Build Packages / DIALS test (push) Successful in 15m45s
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JUNGFRAUJOCH_CBORUTIL_H
|
|
#define JUNGFRAUJOCH_CBORUTIL_H
|
|
|
|
#include "tinycbor/cbor.h"
|
|
|
|
constexpr const CborTag TagMultiDimArray = 40;
|
|
constexpr const CborTag TagDECTRISCompression = 56500;
|
|
|
|
// rfc8746
|
|
constexpr const CborTag TagHalfLE = 0b01010100;
|
|
constexpr const CborTag TagFloatLE = 0b01010101;
|
|
constexpr const CborTag TagDoubleLE = 0b01010110;
|
|
|
|
constexpr const CborTag TagUnsignedInt8Bit = 0b01000000;
|
|
constexpr const CborTag TagSignedInt8Bit = 0b01001000;
|
|
|
|
constexpr const CborTag TagUnsignedInt16BitLE = 0b01000101;
|
|
constexpr const CborTag TagSignedInt16BitLE = 0b01001101;
|
|
|
|
constexpr const CborTag TagUnsignedInt32BitLE = 0b01000110;
|
|
constexpr const CborTag TagSignedInt32BitLE = 0b01001110;
|
|
|
|
constexpr const CborTag TagUnsignedInt64BitLE = 0b01000111;
|
|
constexpr const CborTag TagSignedInt64BitLE = 0b01001111;
|
|
|
|
#endif //JUNGFRAUJOCH_CBORUTIL_H
|