mirror of
https://github.com/grblHAL/core.git
synced 2026-09-26 09:55:54 +08:00
Large spindle handling refactoring and enhancement++, see the changelog for more.
This commit is contained in:
+10
-5
@@ -43,11 +43,6 @@
|
||||
vfd_init();
|
||||
#endif
|
||||
|
||||
#if N_SPINDLE > 1
|
||||
extern void spindle_select_init(void);
|
||||
spindle_select_init();
|
||||
#endif
|
||||
|
||||
#ifndef GRBL_ESP32 // ESP32 has its own bluetooth_init
|
||||
#if BLUETOOTH_ENABLE
|
||||
extern void bluetooth_init (void);
|
||||
@@ -93,6 +88,11 @@
|
||||
extern void my_plugin_init (void);
|
||||
my_plugin_init();
|
||||
|
||||
#if N_SPINDLE > 1
|
||||
extern void spindle_select_init(void);
|
||||
spindle_select_init();
|
||||
#endif
|
||||
|
||||
// Third party plugin definitions.
|
||||
// The code for these has to be downloaded from the source and placed in the same folder as driver.c
|
||||
// Note: Third party plugins may have more than one implementation, there is no "owner" of plugins listed here.
|
||||
@@ -108,6 +108,11 @@
|
||||
probe_relay_init();
|
||||
#endif
|
||||
|
||||
#if DISPLAY_ENABLE
|
||||
void display_init (void);
|
||||
display_init();
|
||||
#endif
|
||||
|
||||
#if STATUS_LIGHT_ENABLE
|
||||
extern void status_light_init (void);
|
||||
status_light_init();
|
||||
|
||||
Reference in New Issue
Block a user