rename signal to show

This commit is contained in:
2020-11-03 10:05:45 +01:00
parent 92d31980c8
commit 83c6d65172
8 changed files with 21 additions and 21 deletions

View File

@ -1,6 +1,6 @@
#include <main.h>
#include <loopCtrl.h>
#include <signal.h>
#include <show.h>
bool loopActive = false;
@ -20,7 +20,7 @@ void loopDisable() {
void loopStatusCallback() {
GPIO_PinState status = HAL_GPIO_ReadPin(Loop_Status_GPIO_Port, Loop_Status_Pin);
if (status == GPIO_PIN_SET) {
signal(LED_RED, ON);
show(LED_RED, ON);
loopActive = false;
}
}