Mercurial > public > ostc4
diff Discovery/Src/tMenuEditHardware.c @ 115:3834b6272ee5 FlipDisplay
Merge with 68181cd61f2069d061621c2cd2a6afddb7486f5e
author | Ideenmodellierer |
---|---|
date | Thu, 03 Jan 2019 19:59:36 +0100 |
parents | cc8e24374b83 be35821a4974 |
children | b7689d9e888a |
line wrap: on
line diff
--- a/Discovery/Src/tMenuEditHardware.c Thu Jan 03 18:35:11 2019 +0100 +++ b/Discovery/Src/tMenuEditHardware.c Thu Jan 03 19:59:36 2019 +0100 @@ -36,6 +36,7 @@ #include "tCCR.h" #include "tMenuEdit.h" + /* Private function prototypes -----------------------------------------------*/ void openEdit_Bluetooth(void); void openEdit_Compass(void); @@ -792,16 +793,16 @@ if(action == ACTION_BUTTON_NEXT) { digitContentNew = digitContent - '0'; - if(digitContentNew >= 110) + if(digitContentNew >= MAX_BUTTONRESPONSIVENESS_GUI) { - digitContentNew = 70; + digitContentNew = MIN_BUTTONRESPONSIVENESS_GUI; } else { remainder = digitContentNew%5; digitContentNew += 5 - remainder; - if(digitContentNew >= 110) - digitContentNew = 110; + if(digitContentNew >= MAX_BUTTONRESPONSIVENESS_GUI) + digitContentNew = MAX_BUTTONRESPONSIVENESS_GUI; } return '0' + digitContentNew; } @@ -809,8 +810,8 @@ if(action == ACTION_BUTTON_BACK) { digitContentNew = digitContent - '0'; - if(digitContentNew <= 70) - digitContentNew = 110; + if(digitContentNew <= MIN_BUTTONRESPONSIVENESS_GUI) + digitContentNew = MAX_BUTTONRESPONSIVENESS_GUI; else { remainder = digitContentNew%5;