Update Sublime files

This commit is contained in:
Scott Lahteine 2018-09-23 19:58:36 -04:00
parent a4cdffdd69
commit a2b0260f0f
4 changed files with 14 additions and 15 deletions

View file

@ -71,7 +71,6 @@
#include "../feature/leds/leds.h" #include "../feature/leds/leds.h"
#endif #endif
// For i2c define BUZZ to use lcd_buzz
#if DISABLED(LCD_USE_I2C_BUZZER) #if DISABLED(LCD_USE_I2C_BUZZER)
#include "../libs/buzzer.h" #include "../libs/buzzer.h"
#endif #endif

View file

@ -447,10 +447,8 @@ bool set_probe_deployed(const bool deploy) {
do_probe_raise(Z_CLEARANCE_DEPLOY_PROBE); do_probe_raise(Z_CLEARANCE_DEPLOY_PROBE);
#if PIN_EXISTS(BEEPER) || ENABLED(LCD_USE_I2C_BUZZER) BUZZ(100, 659);
BUZZ(100, 659); BUZZ(100, 698);
BUZZ(100, 698);
#endif
const char * const ds_str = deploy ? PSTR(MSG_MANUAL_DEPLOY) : PSTR(MSG_MANUAL_STOW); const char * const ds_str = deploy ? PSTR(MSG_MANUAL_DEPLOY) : PSTR(MSG_MANUAL_STOW);
lcd_setalertstatusPGM(ds_str); lcd_setalertstatusPGM(ds_str);

View file

@ -2,6 +2,17 @@
"folders": "folders":
[ [
{ {
"folder_exclude_patterns":
[
".pio*",
"MarlinFirmware/lib",
"Marlin/lib",
"datatmp",
"Marlin/*/src",
".vscode"
],
"binary_file_patterns":
[ "*.png", "*.jpg", "*.jpeg", "*.bdf", "*.patch", "avrdude_5.*", "*.svg" ],
"file_exclude_patterns": "file_exclude_patterns":
[ [
"Marlin/platformio.ini", "Marlin/platformio.ini",
@ -11,16 +22,6 @@
"Marlin/*/.travis.yml", "Marlin/*/.travis.yml",
"Marlin/*/.gitignore" "Marlin/*/.gitignore"
], ],
"folder_exclude_patterns":
[
".pio*",
"MarlinFirmware/lib",
"Marlin/lib",
"src/lib",
"datatmp",
"Marlin/*/src",
".vscode"
],
"path": "../../.." "path": "../../.."
} }
] ]

View file

@ -2,6 +2,7 @@
--- ---
# #
# G-Code (RepRap, not ISO-6983) # G-Code (RepRap, not ISO-6983)
# Author: @thinkyhead
# #
# RapRap G-Code is very simple. # RapRap G-Code is very simple.
# #