You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
739 B
29 lines
739 B
#ifndef HECK_LIBDIZZY_MAIN_DENSITY_HH
|
|
#define HECK_LIBDIZZY_MAIN_DENSITY_HH
|
|
|
|
#include "dizzy.hh"
|
|
|
|
namespace Heck {
|
|
namespace Constants {
|
|
namespace Hardware {
|
|
constexpr int PIN_POT_1 = 15;
|
|
constexpr int PIN_POT_2 = 16;
|
|
constexpr int PIN_POT_3 = 17;
|
|
constexpr int PIN_POT_4 = 18;
|
|
} // namespace Hardware
|
|
|
|
constexpr bool CPU_BOOST480MHZ = false;
|
|
constexpr int AUDIO_BUFFERSIZE = 4;
|
|
constexpr dz::Samplerate AUDIO_SAMPLERATE = dz::Samplerate::SAI_48KHZ;
|
|
|
|
namespace Developer {
|
|
constexpr bool LOG_BLOCKS_BOOT = false;
|
|
}
|
|
} // namespace Constants
|
|
|
|
//Hardware
|
|
extern ld::DaisySeed seed;
|
|
} // namespace Heck
|
|
|
|
|
|
#endif
|