milan-avb: lock: make it lockable:

1. The period calls were added to handle timeouts.
2. Handle the case where lock must be unlocked after 60s if the
   controller owning the locked does not release it.
This commit is contained in:
hackerman-kl 2026-04-16 08:10:14 +02:00 committed by hackerman-kl
parent adad89dc0e
commit c551acf4d1
5 changed files with 112 additions and 0 deletions

View file

@ -12,6 +12,15 @@
#include <stdint.h>
/**
* @brief Checks whether the Milan entity lock has expired and releases it.
*
* Called once per second from the AECP periodic handler. If the lock is
* active and its timeout (set at lock time) is earlier than @p now, the
* lock is cleared.
*/
void handle_cmd_lock_entity_expired_milan_v12(struct aecp *aecp, int64_t now);
/**
* @brief Command handling will generate the response for the lock command
*/