c21a923ab2
Only works on HID++ >=2.0 so far. Also solves a race condition where the wrong response can be sent to a request.
20 lines
317 B
C++
20 lines
317 B
C++
#ifndef LOGID_BACKEND_DJ_DEFS_H
|
|
#define LOGID_BACKEND_DJ_DEFS_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace logid {
|
|
namespace backend {
|
|
namespace dj
|
|
{
|
|
namespace ReportType
|
|
{
|
|
enum ReportType : uint8_t
|
|
{
|
|
Short = 0x20,
|
|
Long = 0x21
|
|
};
|
|
}
|
|
}}}
|
|
|
|
#endif //LOGID_BACKEND_DJ_DEFS_H
|