created pong message.

This commit is contained in:
Martin Preuss
2025-05-29 20:23:44 +02:00
parent 619ac1564e
commit dff347bcb7
3 changed files with 39 additions and 2 deletions

View File

@@ -12,6 +12,7 @@
debug-w.asm
device-w.asm
memstats-w.asm
pong-w.asm
reboot-d.asm
reboot-r.asm
recvstats-w.asm

View File

@@ -0,0 +1,37 @@
; ***************************************************************************
; copyright : (C) 2025 by Martin Preuss
; email : martin@libchipcard.de
;
; ***************************************************************************
; * This file is part of the project "AqHome". *
; * Please see toplevel file COPYING of that project for license details. *
; ***************************************************************************
; ---------------------------------------------------------------------------
; @routine NETMSG_Pong_Write @global
;
; @param R16 dest addr
; @param Y pointer to device to write msg for and to
; @param X pointer to buffer to write to
; @clobbers R16 (R17, R18, R19, R20, R21, Z)
NETMSG_Pong_Write:
st X+, r16 ; dest address
ldi r16, 6 ; msg code+src address+4 payload bytes
st X+, r16 ; msg len
ldi r16, NETMSG_CMD_PONG
st X+, r16 ; msg code
ldd r16, Y+NET_IFACE_OFFS_ADDRESS
st X+, r16 ; src address
rcall NETMSG_Common_AddUidToBuffer ; (R16, R18, R19, R20, R21)
sbiw xh:xl, 8 ; go back to beginning of message (1 byte dst addr, 1 byte length, 6 bytes payload)
rcall NETMSG_CalcAndAddChecksumByte ; (R16, R17, R18, R19, R20, X)
sbiw xh:xl, 9 ; go back to beginning of message (1 byte dst addr, 1 byte length, 6 bytes payload, 1 byte crc)
ret
; @end