#include <cstddef>
#include <string>
#include "device.hpp"
#include "log.hpp"
#include "device_io_hid.hpp"
#include <boost/thread/mutex.hpp>
#include <boost/thread/recursive_mutex.hpp>
Go to the source code of this file.
◆ MINIMAL_APP_VERSION
◆ MINIMAL_APP_VERSION_MAJOR
| #define MINIMAL_APP_VERSION_MAJOR 1 |
◆ MINIMAL_APP_VERSION_MICRO
| #define MINIMAL_APP_VERSION_MICRO 0 |
◆ MINIMAL_APP_VERSION_MINOR
| #define MINIMAL_APP_VERSION_MINOR 0 |
◆ VERSION
| #define VERSION |
( |
|
M, |
|
|
|
m, |
|
|
|
u |
|
) |
| ((M)<<16|(m)<<8|(u)) |
◆ VERSION_MAJOR
| #define VERSION_MAJOR |
( |
|
v | ) |
(((v)>>16)&0xFF) |
◆ VERSION_MICRO
| #define VERSION_MICRO |
( |
|
v | ) |
(((v)>>0)&0xFF) |
◆ VERSION_MINOR
| #define VERSION_MINOR |
( |
|
v | ) |
(((v)>>8)&0xFF) |