t03: send memory stats.
This commit is contained in:
69
avr/modules/network/msg/memstats-w.asm
Normal file
69
avr/modules/network/msg/memstats-w.asm
Normal file
@@ -0,0 +1,69 @@
|
||||
; ***************************************************************************
|
||||
; 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_MemStats_Write @global
|
||||
;
|
||||
; @param Y pointer to device to write msg for
|
||||
; @param X pointer to buffer to write to
|
||||
; @clobbers R16, R17, R18, R19, R20, R21
|
||||
|
||||
NETMSG_MemStats_Write:
|
||||
ldi r16, 0xff
|
||||
st X+, r16 ; dest address
|
||||
ldi r16, 16 ; msg code+src address+14 payload bytes
|
||||
st X+, r16 ; msg len
|
||||
ldi r16, NETMSG_CMD_MEMSTATS
|
||||
st X+, r16 ; msg code
|
||||
ldd r16, Y+NET_IFACE_OFFS_ADDRESS
|
||||
st X+, r16 ; src address
|
||||
|
||||
; uid
|
||||
rcall NETMSG_Common_AddUidToBuffer ; (R16, R18, R19, R20, R21)
|
||||
; timestamp (0 for now)
|
||||
clr r16
|
||||
st X+, r16
|
||||
st X+, r16
|
||||
st X+, r16
|
||||
st X+, r16
|
||||
; stack used
|
||||
ldi r20, LOW(RAMEND)
|
||||
ldi r21, HIGH(RAMEND)
|
||||
in r17, SPL
|
||||
sub r20, r17
|
||||
st X+, r20
|
||||
in r17, SPH
|
||||
sbc r21, r17
|
||||
st X+, r21
|
||||
; current buffers used
|
||||
push xl
|
||||
push xh
|
||||
rcall NET_Buffer_CountUsed ; (r16, r17, r18, X)
|
||||
pop xh
|
||||
pop xl
|
||||
st X+, r16
|
||||
; max buffers used
|
||||
clr r16
|
||||
st X+, r16
|
||||
; no buffer errors
|
||||
ldd r16, Y+NET_IFACE_OFFS_ERR_NOBUF_LOW
|
||||
st X+, r16
|
||||
ldd r16, Y+NET_IFACE_OFFS_ERR_NOBUF_HIGH
|
||||
st X+, r16
|
||||
|
||||
sbiw xh:xl, 18 ; go back to beginning of message (1 byte dst addr, 1 byte length, 16 bytes payload)
|
||||
rcall NETMSG_CalcAndAddChecksumByte ; (R16, R17, R18, R19, R20, X)
|
||||
sbiw xh:xl, 19 ; go back to beginning of message (1 byte dst addr, 1 byte length, 16 bytes payload, 1 byte crc)
|
||||
ret
|
||||
; @end
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user