definitions for probe and estop

This commit is contained in:
2025-05-30 20:11:04 +02:00
parent 73c78133ac
commit cc46c0696b

View File

@@ -44,4 +44,9 @@
#define LED_RIGHT_RED() (LED34_SW_PORT |= (1 << LED34_SW_PIN)) #define LED_RIGHT_RED() (LED34_SW_PORT |= (1 << LED34_SW_PIN))
#define LED_GREEN_BRIGHTNESS 2 #define LED_GREEN_BRIGHTNESS 2
#define LED_RED_BRIGHTNESS 20 #define LED_RED_BRIGHTNESS 20
#define SET_PROBE_HEIGHT() (PROBE_OUT_PORT &= ~(1 << PROBE_OUT_PIN))
#define SET_PROBE_LOW() (PROBE_OUT_PORT |= (1 << PROBE_OUT_PIN))
#define SET_ESTOP_HEIGHT() (ESTOP_OUT_PORT &= ~(1 << ESTOP_OUT_PIN))
#define SET_ESTOP_LOW() (ESTOP_OUT_PORT |= (1 << ESTOP_OUT_PIN))