fix template factor
This commit is contained in:
parent
be243efd6e
commit
1235efaf61
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* @author R<EFBFBD>mi Heredero (remi@heredero.ch)
|
||||
* @version. 0.0.6
|
||||
* @date 2023-06-15
|
||||
* @author Rémi Heredero
|
||||
* @version. 1.0.0
|
||||
* @date July 2023
|
||||
*/
|
||||
#include "factory.h"
|
||||
|
||||
@ -62,23 +62,6 @@ CLICK_HANDLER* 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
|
||||
void Factory_init() {
|
||||
LED_init(l1(), 1);
|
||||
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* @author R<EFBFBD>mi Heredero (remi@heredero.ch)
|
||||
* @version. 0.0.6
|
||||
* @date 2023-06-15
|
||||
* @author Rémi Heredero
|
||||
* @version. 1.0.0
|
||||
* @date July 2023
|
||||
*/
|
||||
|
||||
#ifndef FACTORY_H
|
||||
|
@ -27,6 +27,5 @@ void main(void)
|
||||
|
||||
while (1) {
|
||||
XF_executeOnce();
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user