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

@ -9,7 +9,7 @@
#include <PontCoopScheduler.h>
#include <signal.h>
#include <show.h>
#include <loopCtrl.h>
#include <mbusComm.h>
#include <logger.h>
@ -21,7 +21,7 @@ void my_setup_1() {
}
void my_errorHandler() {
signal(LED_RED, ON);
show(LED_RED, ON);
}
void helloMeterbus(void *handle) {
@ -36,8 +36,8 @@ void helloMeterbus(void *handle) {
void my_setup_2() {
signal(LED_RED, OFF);
signal(LED_GREEN, ON);
show(LED_RED, OFF);
show(LED_GREEN, ON);
frontendInit();
frontendSetThreshold(240);
@ -46,7 +46,7 @@ void my_setup_2() {
}
void my_loop() {
signal(DEBUG_1, TOGGLE);
show(DEBUG_1, TOGGLE);
schExec();
logExec();