|
@@ -11,11 +11,11 @@ uint8_t PrusaErrorCodeIndex(uint16_t ec);
|
|
|
|
|
|
/// @returns pointer to a PROGMEM string representing the Title of the Prusa-Error-Codes error
|
|
|
/// @param i index of the error - obtained by calling ErrorCodeIndex
|
|
|
-const char * const PrusaErrorTitle(uint8_t i);
|
|
|
+const char * PrusaErrorTitle(uint8_t i);
|
|
|
|
|
|
/// @returns pointer to a PROGMEM string representing the multi-page Description of the Prusa-Error-Codes error
|
|
|
/// @param i index of the error - obtained by calling ErrorCodeIndex
|
|
|
-const char * const PrusaErrorDesc(uint8_t i);
|
|
|
+const char * PrusaErrorDesc(uint8_t i);
|
|
|
|
|
|
/// @returns the actual numerical value of the Prusa-Error-Codes error
|
|
|
/// @param i index of the error - obtained by calling ErrorCodeIndex
|
|
@@ -27,10 +27,10 @@ uint8_t PrusaErrorButtons(uint8_t i);
|
|
|
|
|
|
/// @returns pointer to a PROGMEM string representing the Title of a button
|
|
|
/// @param i index of the error - obtained by calling PrusaErrorButtons + extracting low or high nibble from the Btns pair
|
|
|
-const char * const PrusaErrorButtonTitle(uint8_t bi);
|
|
|
+const char * PrusaErrorButtonTitle(uint8_t bi);
|
|
|
|
|
|
/// @returns pointer to a PROGMEM string representing the "More" button
|
|
|
-const char * const PrusaErrorButtonMore();
|
|
|
+const char * PrusaErrorButtonMore();
|
|
|
|
|
|
/// Sets the selected button for later pick-up by the MMU state machine.
|
|
|
/// Used to save the GUI selection/decoupling
|