mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-07-17 09:01:55 +00:00
11 lines
188 B
C
11 lines
188 B
C
/**
|
|
* @file rtc_utils.h
|
|
* @brief RTC helper functions (lightweight, no Wire include)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
bool board_adjust_rtc_by_offset_minutes(int offset_minutes);
|