Placed optional ENCODER_PULSES_PER_STEP in the configuration.h file

This commit is contained in:
Erik van der Zalm
2013-09-23 23:25:11 +02:00
parent 3ca1ca6869
commit 9bc88f8bab
2 changed files with 7 additions and 3 deletions

View File

@ -88,10 +88,14 @@ static void menu_action_setting_edit_callback_long5(const char* pstr, unsigned l
#if !defined(LCD_I2C_VIKI)
#define ENCODER_STEPS_PER_MENU_ITEM 5
#define ENCODER_PULSES_PER_STEP 1
#ifndef ENCODER_PULSES_PER_STEP
#define ENCODER_PULSES_PER_STEP 1
#endif
#else
#define ENCODER_STEPS_PER_MENU_ITEM 2 // VIKI LCD rotary encoder uses a different number of steps per rotation
#define ENCODER_PULSES_PER_STEP 1
#ifndef ENCODER_PULSES_PER_STEP
#define ENCODER_PULSES_PER_STEP 1
#endif
#endif