67 lines
1.6 KiB
C
67 lines
1.6 KiB
C
#include "watch_registers.h"
|
|
|
|
// leave resource_detector.h as last include!
|
|
#include "resource_detector.h"
|
|
|
|
void watch_registers_toggle_config_is_paused(uint8_t* config)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_config_time_format(uint8_t* config, time_format format)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_config_time_update_interval(
|
|
uint8_t* config, time_update_interval interval)
|
|
{
|
|
}
|
|
|
|
void watch_registers_get_config_settings(
|
|
uint8_t config, bool* is_paused, time_format* format,
|
|
time_update_interval* interval)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_time_hours(
|
|
uint8_t* time_bits_low, uint8_t* time_bits_high, uint8_t hours)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_time_minutes(
|
|
uint8_t* time_bits_low, uint8_t* time_bits_high, uint8_t minutes)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_time_seconds(
|
|
uint8_t* time_bits_low, uint8_t* time_bits_high, uint8_t seconds)
|
|
{
|
|
}
|
|
|
|
void watch_registers_get_time(
|
|
uint8_t time_bits_low, uint8_t time_bits_high, uint8_t* hours,
|
|
uint8_t* minutes, uint8_t* seconds)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_date_year(
|
|
uint8_t* date_bits_low, uint8_t* date_bits_high, uint8_t year)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_date_month(
|
|
uint8_t* date_bits_low, uint8_t* date_bits_high, uint8_t month)
|
|
{
|
|
}
|
|
|
|
void watch_registers_set_date_day_of_month(
|
|
uint8_t* date_bits_low, uint8_t* date_bits_high,
|
|
uint8_t day_of_month)
|
|
{
|
|
}
|
|
|
|
void watch_registers_get_date(
|
|
uint8_t date_bits_low, uint8_t date_bits_high, uint8_t* year,
|
|
uint8_t* month, uint8_t* day_of_month)
|
|
{
|
|
}
|