Add SD logging and update docs

- Add optional microSD CSV logging per sender/day on receiver
- Wire logger into receiver packet handling
- Document new batch header fields, build envs, and SD logging
- Make sender links open in a new tab
This commit is contained in:
2026-02-02 00:22:35 +01:00
parent 5085b9ad3d
commit f3af5b3f1c
6 changed files with 149 additions and 4 deletions

7
src/sd_logger.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
#include "data_model.h"
void sd_logger_init();
bool sd_logger_is_ready();
void sd_logger_log_sample(const MeterData &data, bool include_error_text);