avr: renamed some files.

This commit is contained in:
Martin Preuss
2024-12-15 18:19:09 +01:00
parent 433720525d
commit c3fd458769
3 changed files with 16 additions and 2 deletions

View File

@@ -10,8 +10,8 @@
</subdirs> </subdirs>
<extradist> <extradist>
defs.asm defs_all.asm
main.asm main_all.asm
</extradist> </extradist>

View File

@@ -16,6 +16,8 @@
.equ AQHOME_VALUETYPE_RGB = 4 .equ AQHOME_VALUETYPE_RGB = 4
.equ AQHOME_VALUETYPE_RGBW = 5 .equ AQHOME_VALUETYPE_RGBW = 5
.equ AQHOME_VALUETYPE_MOTION = 6 .equ AQHOME_VALUETYPE_MOTION = 6
.equ AQHOME_VALUETYPE_CO2 = 7
.equ AQHOME_VALUETYPE_TVOC = 8
.equ AQHOME_FW_TYPE_ATT84_BASE = 0 .equ AQHOME_FW_TYPE_ATT84_BASE = 0

View File

@@ -162,6 +162,13 @@ initModules:
rcall MotionLight_Init rcall MotionLight_Init
#endif #endif
#ifdef MODULES_TCRT1000
rcall TCRT1K_Init
#endif
#ifdef MODULES_CCS811
rcall CCS811_Init
#endif
; done ; done
ret ret
@@ -221,6 +228,11 @@ runModules_ComEnd:
; rcall MotionLight_Run ; rcall MotionLight_Run
#endif #endif
#ifdef MODULES_TCRT1000
rcall TCRT1K_Run
#endif
; add more modules here ; add more modules here
ret ret