Archived
Template
1
0

fix template factor

This commit is contained in:
Rémi Heredero 2023-07-13 23:54:35 +02:00
parent be243efd6e
commit 1235efaf61
3 changed files with 6 additions and 24 deletions

View File

@ -1,7 +1,7 @@
/** /**
* @author R<EFBFBD>mi Heredero (remi@heredero.ch) * @author Rémi Heredero
* @version. 0.0.6 * @version. 1.0.0
* @date 2023-06-15 * @date July 2023
*/ */
#include "factory.h" #include "factory.h"
@ -62,23 +62,6 @@ CLICK_HANDLER* ch3() {
return &theFactory.ch3_; return &theFactory.ch3_;
} }
BLINKER* blL() {
return &theFactory.blL_;
}
BLINKER* blR() {
return &theFactory.blR_;
}
BLINKER* blB() {
return &theFactory.blB_;
}
BLINKER* blT() {
return &theFactory.blT_;
}
APP* app() {
return &theFactory.app_;
}
//initialize all objects //initialize all objects
void Factory_init() { void Factory_init() {
LED_init(l1(), 1); LED_init(l1(), 1);

View File

@ -1,7 +1,7 @@
/** /**
* @author R<EFBFBD>mi Heredero (remi@heredero.ch) * @author Rémi Heredero
* @version. 0.0.6 * @version. 1.0.0
* @date 2023-06-15 * @date July 2023
*/ */
#ifndef FACTORY_H #ifndef FACTORY_H

View File

@ -27,6 +27,5 @@ void main(void)
while (1) { while (1) {
XF_executeOnce(); XF_executeOnce();
} }
} }