avr: added code for missing modules.

This commit is contained in:
Martin Preuss
2024-09-09 15:49:26 +02:00
parent a456211438
commit e70c294d9b

View File

@@ -101,6 +101,10 @@ initModules:
ldi yh, HIGH(ledA3Sram)
rcall Led_Init
#endif
#ifdef MODULES_LED_SIMPLE
rcall LedSimple_Init
#endif
#ifdef MODULES_COM
rcall Com2_Init ; init COM module
@@ -177,6 +181,10 @@ runModulesUntilIdle_ComEnd:
rcall REED_Run
#endif
#ifdef MODULES_CNY70
rcall CNY70_Run
#endif
; add more modules here
ret