Browse Source

Update Sublime files

Scott Lahteine 5 years ago
parent
commit
a2b0260f0f

+ 0
- 1
Marlin/src/lcd/ultralcd.cpp View File

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

+ 2
- 4
Marlin/src/module/probe.cpp View File

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

+ 11
- 10
buildroot/share/sublime/MarlinFirmware.sublime-project View File

@@ -2,25 +2,26 @@
2 2
 	"folders":
3 3
 	[
4 4
 		{
5
-			"file_exclude_patterns":
6
-			[
7
-				"Marlin/platformio.ini",
8
-				"Marlin/.travis.yml",
9
-				"Marlin/.gitignore",
10
-				"Marlin/*/platformio.ini",
11
-				"Marlin/*/.travis.yml",
12
-				"Marlin/*/.gitignore"
13
-			],
14 5
 			"folder_exclude_patterns":
15 6
 			[
16 7
 				".pio*",
17 8
 				"MarlinFirmware/lib",
18 9
 				"Marlin/lib",
19
-				"src/lib",
20 10
 				"datatmp",
21 11
 				"Marlin/*/src",
22 12
 				".vscode"
23 13
 			],
14
+			"binary_file_patterns":
15
+			[ "*.png", "*.jpg", "*.jpeg", "*.bdf", "*.patch", "avrdude_5.*", "*.svg" ],
16
+			"file_exclude_patterns":
17
+			[
18
+				"Marlin/platformio.ini",
19
+				"Marlin/.travis.yml",
20
+				"Marlin/.gitignore",
21
+				"Marlin/*/platformio.ini",
22
+				"Marlin/*/.travis.yml",
23
+				"Marlin/*/.gitignore"
24
+			],
24 25
 			"path": "../../.."
25 26
 		}
26 27
 	]

+ 1
- 0
buildroot/share/sublime/RepRapTools/G-Code.sublime-syntax View File

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

Loading…
Cancel
Save