feat(fw/health): добавлено моргание светодиода

This commit is contained in:
2025-12-26 02:46:06 +03:00
parent 2a14a36797
commit eaa0e0a3eb
5 changed files with 147 additions and 39 deletions

15
firmware/App/Inc/health.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef HEALTH_H
#define HEALTH_H
#include <stdbool.h>
#include <stdint.h>
void health_kick_watchdog(void);
void health_init_watchdog(void);
void health_update_led(float freq_hz, float rms_dbfs);
void health_led_task(void *param);
#endif // HEALTH_H