Rename TEST_RED_* to TEST_LED_*

This commit is contained in:
László Monda
2016-10-04 16:21:19 +02:00
parent 2bf3e033d0
commit 9172493642
3 changed files with 7 additions and 7 deletions

View File

@@ -88,10 +88,10 @@ void GetSetTestLed()
uint8_t arg = GenericHidInBuffer[1];
switch (arg) {
case 0:
TEST_RED_ON();
TEST_LED_ON();
break;
case 1:
TEST_RED_OFF();
TEST_LED_OFF();
break;
}
}