Born on Stahl's Birthday.
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.
 
 

28 lines
629 B

#ifndef HECK_MAIN_ADC_HH
#define HECK_MAIN_ADC_HH
#include <functional>
#include "types.hh"
namespace Heck {
namespace Constants {
namespace Hardware {
constexpr int PIN_BUTTON_1 = 28;
constexpr int PIN_POT_1 = 15;
constexpr int PIN_POT_2 = 16;
constexpr int PIN_POT_3 = 15;
}
constexpr bool CPU_BOOST480MHZ = false;
namespace Developer {
constexpr bool LOG_BLOCKS_BOOT = false;
}
} // namespace Constants
//Hardware
extern ld::DaisySeed seed;
// extern ld::Switch but_rec;
} // namespace Heck
#endif