diff --git a/src/app/factory.c b/src/app/factory.c index 0cd32a2..3ba2bf0 100755 --- a/src/app/factory.c +++ b/src/app/factory.c @@ -1,7 +1,7 @@ /** - * @author R�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); diff --git a/src/app/factory.h b/src/app/factory.h index 12ca7f0..c6e7151 100755 --- a/src/app/factory.h +++ b/src/app/factory.h @@ -1,7 +1,7 @@ /** - * @author R�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 diff --git a/src/app/main.c b/src/app/main.c index e08c63f..24cd8f8 100644 --- a/src/app/main.c +++ b/src/app/main.c @@ -27,6 +27,5 @@ void main(void) while (1) { XF_executeOnce(); - } } \ No newline at end of file