Skip to content

Commit

Permalink
Added support for "assorted small plugins".
Browse files Browse the repository at this point in the history
  • Loading branch information
terjeio committed Nov 20, 2024
1 parent c1f345a commit d8c478d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -207,12 +207,13 @@ set(LASER_SOURCE
set(MISC_PLUGINS_SOURCE
plugins/bltouch.c
plugins/eventout.c
plugins/feed_override_m220.c
plugins/homing_pulloff.c
plugins/pwm_servo_m280.c
plugins/rgb_led_m150.c
plugins/rgb_led_strips.c
)


set(EMBROIDERY_SOURCE
embroidery/embroidery.c
embroidery/brother.c
Expand Down
14 changes: 8 additions & 6 deletions main/my_machine.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
//#define SPINDLE3_ENABLE SPINDLE_NONE
//#define SPINDLE_OFFSET 1 // Uncomment to enable settings for laser spindle XY-offset.
// **********************
//#define MODBUS_ENABLE 1 // Set to 1 for auto direction, 2 for direction signal on auxillary output pin.
//#define MODBUS_ENABLE 1 // Set to 1 for auto direction, 2 for direction signal on auxiliary output pin.
//#define WEBUI_ENABLE 3 // Enable ESP3D-WEBUI plugin along with networking and SD card plugins.
//#define WEBUI_AUTH_ENABLE 1 // Enable ESP3D-WEBUI authentication.
//#define WIFI_ENABLE 1 //
Expand All @@ -85,10 +85,13 @@
//#define EEPROM_IS_FRAM 1 // Uncomment when EEPROM is enabled and chip is FRAM, this to remove write delay.
#define ESTOP_ENABLE 0 // When enabled only real-time report requests will be executed when the reset pin is asserted.
// NOTE: if left commented out the default setting is determined from COMPATIBILITY_LEVEL.
//#define RGB_LED_ENABLE 2 // Set to 1 to enable strip length settings $536 and $537, set to 2 to also enable M150 LED strip control.
//#define PWM_SERVO_ENABLE 1 // Enable PWM servo support, requires at least one PWM capable auxillary output.
//#define BLTOUCH_ENABLE 1 // Enable BLTouch support. Requires and claims one PWM servo output.
//#define EVENTOUT_ENABLE 1 // Enable binding events (triggers) to control auxillary outputs.
//#define RGB_LED_ENABLE 2 // Set to 1 to enable strip length settings $536 and $537, set to 2 to also enable M150 LED strip control.
//#define PWM_SERVO_ENABLE 1 // Enable M280 PWM servo support, requires at least one PWM capable auxiliary output.
//#define BLTOUCH_ENABLE 1 // Enable M401/M402 BLTouch support. Requires and claims one auxiliary PWM servo output.
//#define EVENTOUT_ENABLE 1 // Enable binding events (triggers) to control auxiliary outputs.
//#define ESP_AT_ENABLE 1 // Enable support for Telnet communication via UART connected ESP32 running ESP-AT.
//#define FEED_OVERRIDE_ENABLE 1 // Enable M200 feed override control.
//#define HOMING_PULLOFF_ENABLE 1 // Enable per axis homing pulloff distance settings.

// Optional control signals:
// These will be assigned to aux input pins. Use the $pins command to check which pins are assigned.
Expand Down Expand Up @@ -118,7 +121,6 @@
//#define Z_GANGED_LIM_MAX 1
//


#if WIFI_ENABLE || ETHERNET_ENABLE || WEBUI_ENABLE
#define TELNET_ENABLE 1 // Telnet daemon - requires WiFi streaming enabled.
//#define WEBSOCKET_ENABLE 1 // Websocket daemon - requires WiFi streaming enabled.
Expand Down

0 comments on commit d8c478d

Please sign in to comment.