config adjustments

log
Ondřej Hruška 8 years ago
parent 17c9882472
commit c31a3040c2
  1. 7
      User/user_main.c

@ -23,6 +23,7 @@
#define SCREEN_W 32 #define SCREEN_W 32
#define SCREEN_H 16 #define SCREEN_H 16
#define DEFAULT_BRIGHTNESS 2
// Pins // Pins
#define BTN_CENTER 0 #define BTN_CENTER 0
@ -35,11 +36,11 @@
#define WAVEFORM_SCALE 0.02 #define WAVEFORM_SCALE 0.02
#define FFT_PRELOG_SCALE 1.0 #define FFT_PRELOG_SCALE 1.0
#define FFT_FINAL_SCALE 3.0 #define FFT_FINAL_SCALE 3.0
#define FFT_PREFFT_SCALE 0.3 #define FFT_PREFFT_SCALE 0.4
#define VOL_STEP_TIME 50 #define VOL_STEP_TIME 50
#define VOL_STEP 0.05 #define VOL_STEP 0.05
#define VOL_STEP_LARGE 1.0 #define VOL_STEP_LARGE 0.75
#define VOL_STEP_THRESH 0.01 #define VOL_STEP_THRESH 0.01
#define VOL_STEP_SPEEDUP_TIME 750 #define VOL_STEP_SPEEDUP_TIME 750
@ -59,7 +60,7 @@ volatile bool capture_pending = false;
/** scale & brightness config fields. Initial values. */ /** scale & brightness config fields. Initial values. */
float y_scale = 1; float y_scale = 1;
uint8_t brightness = 3; uint8_t brightness = DEFAULT_BRIGHTNESS;
/** active rendering mode (visualisation preset) */ /** active rendering mode (visualisation preset) */
enum { enum {

Loading…
Cancel
Save