Fix TEST_LED_{ON,OFF} macros to function as they should. Enable the test LEDs of both halves by default.
This commit is contained in:
+2
-2
@@ -15,8 +15,8 @@
|
||||
#define TEST_LED_CLOCK kCLOCK_PortA
|
||||
#define TEST_LED_PIN 12
|
||||
|
||||
#define TEST_LED_ON() GPIO_ClearPinsOutput(TEST_LED_GPIO, 1U << TEST_LED_PIN)
|
||||
#define TEST_LED_OFF() GPIO_SetPinsOutput(TEST_LED_GPIO, 1U << TEST_LED_PIN)
|
||||
#define TEST_LED_ON() GPIO_SetPinsOutput(TEST_LED_GPIO, 1U << TEST_LED_PIN)
|
||||
#define TEST_LED_OFF() GPIO_ClearPinsOutput(TEST_LED_GPIO, 1U << TEST_LED_PIN)
|
||||
#define TEST_LED_TOGGLE() GPIO_TogglePinsOutput(TEST_LED_GPIO, 1U << TEST_LED_GPIO_PIN)
|
||||
|
||||
// Functions:
|
||||
|
||||
Reference in New Issue
Block a user