28 lines
696 B
C++
28 lines
696 B
C++
#ifndef CS_SETTINGSWRAPPER_HPP
|
|
#error "Do not include this file directly, use the wrapper!"
|
|
#endif
|
|
|
|
#include "NamespaceSettings.hpp"
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
BEGIN_CS_NAMESPACE
|
|
|
|
constexpr unsigned long VU_PEAK_DECAY_TIME = 300;
|
|
constexpr unsigned long VU_PEAK_HOLD_TIME = 400;
|
|
constexpr bool VU_PEAK_SMOOTH_DECAY = true;
|
|
constexpr uint8_t NOTE_VELOCITY_THRESHOLD = 1;
|
|
|
|
#define IGNORE_SYSEX 0
|
|
#define NO_SYSEX_OUTPUT 0
|
|
|
|
constexpr uint16_t SYSEX_BUFFER_SIZE = 128;
|
|
constexpr unsigned long SYSEX_CHUNK_TIMEOUT = 500;
|
|
constexpr unsigned long HAIRLESS_BAUD = 115200;
|
|
constexpr uint8_t MAX_FPS = 60;
|
|
|
|
#define CS_TRUE_CONTROL_SURFACE_INSTANCE 1
|
|
#define DISABLE_PIPES 0
|
|
|
|
END_CS_NAMESPACE
|