2018-10-28 09:05:17 +01:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-10-28 09:05:17 +01:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2018-10-28 09:05:17 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-10-28 09:05:17 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// Custom User Menu
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
|
|
|
|
2020-04-24 04:42:38 +02:00
|
|
|
#if BOTH(HAS_LCD_MENU, CUSTOM_USER_MENUS)
|
2018-10-28 09:05:17 +01:00
|
|
|
|
2020-08-21 12:21:34 +02:00
|
|
|
#include "menu_item.h"
|
2018-10-28 09:05:17 +01:00
|
|
|
#include "../../gcode/queue.h"
|
|
|
|
|
|
|
|
#ifdef USER_SCRIPT_DONE
|
|
|
|
#define _DONE_SCRIPT "\n" USER_SCRIPT_DONE
|
|
|
|
#else
|
|
|
|
#define _DONE_SCRIPT ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void _lcd_user_gcode(PGM_P const cmd) {
|
2019-06-19 07:00:19 +02:00
|
|
|
queue.inject_P(cmd);
|
2020-04-24 04:42:38 +02:00
|
|
|
TERN_(USER_SCRIPT_AUDIBLE_FEEDBACK, ui.completion_feedback());
|
2020-04-22 23:35:03 +02:00
|
|
|
TERN_(USER_SCRIPT_RETURN, ui.return_to_status());
|
2018-10-28 09:05:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void menu_user() {
|
|
|
|
START_MENU();
|
2019-10-03 12:38:30 +02:00
|
|
|
BACK_ITEM(MSG_MAIN);
|
2019-12-20 13:29:48 +01:00
|
|
|
#define HAS_USER_ITEM(N) (defined(USER_DESC_##N) && defined(USER_GCODE_##N))
|
|
|
|
#define USER_ITEM(N) ACTION_ITEM_P(PSTR(USER_DESC_##N), []{ _lcd_user_gcode(PSTR(USER_GCODE_##N _DONE_SCRIPT)); });
|
|
|
|
#if HAS_USER_ITEM(1)
|
|
|
|
USER_ITEM(1);
|
2018-10-28 09:05:17 +01:00
|
|
|
#endif
|
2019-12-20 13:29:48 +01:00
|
|
|
#if HAS_USER_ITEM(2)
|
|
|
|
USER_ITEM(2);
|
2018-10-28 09:05:17 +01:00
|
|
|
#endif
|
2019-12-20 13:29:48 +01:00
|
|
|
#if HAS_USER_ITEM(3)
|
|
|
|
USER_ITEM(3);
|
2018-10-28 09:05:17 +01:00
|
|
|
#endif
|
2019-12-20 13:29:48 +01:00
|
|
|
#if HAS_USER_ITEM(4)
|
|
|
|
USER_ITEM(4);
|
2018-10-28 09:05:17 +01:00
|
|
|
#endif
|
2019-12-20 13:29:48 +01:00
|
|
|
#if HAS_USER_ITEM(5)
|
|
|
|
USER_ITEM(5);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(6)
|
|
|
|
USER_ITEM(6);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(7)
|
|
|
|
USER_ITEM(7);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(8)
|
|
|
|
USER_ITEM(8);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(9)
|
|
|
|
USER_ITEM(9);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(10)
|
|
|
|
USER_ITEM(10);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(11)
|
|
|
|
USER_ITEM(11);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(12)
|
|
|
|
USER_ITEM(12);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(13)
|
|
|
|
USER_ITEM(13);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(14)
|
|
|
|
USER_ITEM(14);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(15)
|
|
|
|
USER_ITEM(15);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(16)
|
|
|
|
USER_ITEM(16);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(17)
|
|
|
|
USER_ITEM(17);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(18)
|
|
|
|
USER_ITEM(18);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(19)
|
|
|
|
USER_ITEM(19);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(20)
|
|
|
|
USER_ITEM(20);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(21)
|
|
|
|
USER_ITEM(21);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(22)
|
|
|
|
USER_ITEM(22);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(23)
|
|
|
|
USER_ITEM(23);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(24)
|
|
|
|
USER_ITEM(24);
|
|
|
|
#endif
|
|
|
|
#if HAS_USER_ITEM(25)
|
|
|
|
USER_ITEM(25);
|
2018-10-28 09:05:17 +01:00
|
|
|
#endif
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_LCD_MENU && CUSTOM_USER_MENUS
|