浏览代码

Update Sublime files

Scott Lahteine 6 年前
父节点
当前提交
a2b0260f0f

+ 0
- 1
Marlin/src/lcd/ultralcd.cpp 查看文件

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

+ 2
- 4
Marlin/src/module/probe.cpp 查看文件

447
 
447
 
448
         do_probe_raise(Z_CLEARANCE_DEPLOY_PROBE);
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
         const char * const ds_str = deploy ? PSTR(MSG_MANUAL_DEPLOY) : PSTR(MSG_MANUAL_STOW);
453
         const char * const ds_str = deploy ? PSTR(MSG_MANUAL_DEPLOY) : PSTR(MSG_MANUAL_STOW);
456
         lcd_setalertstatusPGM(ds_str);
454
         lcd_setalertstatusPGM(ds_str);

+ 11
- 10
buildroot/share/sublime/MarlinFirmware.sublime-project 查看文件

2
 	"folders":
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
 			"folder_exclude_patterns":
5
 			"folder_exclude_patterns":
15
 			[
6
 			[
16
 				".pio*",
7
 				".pio*",
17
 				"MarlinFirmware/lib",
8
 				"MarlinFirmware/lib",
18
 				"Marlin/lib",
9
 				"Marlin/lib",
19
-				"src/lib",
20
 				"datatmp",
10
 				"datatmp",
21
 				"Marlin/*/src",
11
 				"Marlin/*/src",
22
 				".vscode"
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
 			"path": "../../.."
25
 			"path": "../../.."
25
 		}
26
 		}
26
 	]
27
 	]

+ 1
- 0
buildroot/share/sublime/RepRapTools/G-Code.sublime-syntax 查看文件

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

正在加载...
取消
保存