Files
aqhomecontrol/avr/defs.asm
Martin Preuss 0db8a14972 avr: added code and messages for device information.
- send firmware information in DEVICE message
- introduced new version of VALUE message (sending UID now instead of
  timestamp)
- make SENDSTATS and RECVSTATS messages also send UID instead of timestamp
2023-03-19 23:20:16 +01:00

19 lines
368 B
NASM

.equ AQHOME_VALUETYPE_TEMP = 1
.equ AQHOME_VALUETYPE_HUMIDITY = 2
; module type ids for firmware header
.equ AQHOME_FW_MODULE_TIMER = 1
.equ AQHOME_FW_MODULE_COM = 2
.equ AQHOME_FW_MODULE_LED = 3
.equ AQHOME_FW_MODULE_TWIMASTER = 4
.equ AQHOME_FW_MODULE_LCD = 5
.equ AQHOME_FW_MODULE_SI7021 = 6
.equ AQHOME_FW_TYPE_ATT84_TEMP1 = 1