Merge pull request #7097 from thinkyhead/bf_dac_percents_fix

Convert DAC percent to uint8_t
This commit is contained in:
Scott Lahteine
2017-06-19 17:58:55 -05:00
committed by GitHub
8 changed files with 29 additions and 23 deletions

View File

@ -848,6 +848,7 @@ static void lcd_implementation_status_screen() {
typedef void _name##_void
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(int, int3, itostr3);
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(uint8_t, int8, i8tostr3);
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float3, ftostr3);
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float32, ftostr32);
DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float43, ftostr43sign);