From e59651a279fb41256591d24bb27155fcc72d73bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Thu, 28 Jul 2022 08:49:09 +0000 Subject: [PATCH] Remove description in header file The description are more detailed in the ultralcd.cpp file No need to document the function in two places :) --- Firmware/ultralcd.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Firmware/ultralcd.h b/Firmware/ultralcd.h index 2037e990e..5fe09ffbc 100755 --- a/Firmware/ultralcd.h +++ b/Firmware/ultralcd.h @@ -77,9 +77,7 @@ extern void lcd_wait_for_click(); extern bool lcd_wait_for_click_delay(uint16_t nDelay); void lcd_show_choices_prompt_P(uint8_t selected, const char *first_choice, const char *second_choice, uint8_t second_col, const char *third_choice = nullptr); extern void lcd_show_fullscreen_message_and_wait_P(const char *msg); -// 1: no, 0: yes, -1: timeouted extern int8_t lcd_show_yes_no_and_wait(bool allow_timeouting = true, uint8_t default_selection = LCD_MIDDLE_BUTTON_CHOICE); -// 1: no, 0: yes, -1: timeouted extern int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting = true, uint8_t default_selection = LCD_MIDDLE_BUTTON_CHOICE); extern int8_t lcd_show_multiscreen_message_with_choices_and_wait_P( const char * const msg, bool allow_timeouting, uint8_t default_selection,