// SPDX-License-Identifier: Apache-2.0 #pragma once #include #include #include struct Device; #ifdef __cplusplus extern "C" { #endif struct Rx8130ceConfig { /** Address on bus */ uint8_t address; }; /** * Read the current date and time from the RTC. * @param[in] device rx8130ce device * @param[out] dt Pointer to RtcDateTime to populate * @return ERROR_NONE on success, ERROR_INVALID_STATE if VLF is set (clock data unreliable) */ error_t rx8130ce_get_datetime(struct Device* device, struct RtcDateTime* dt); /** * Write the date and time to the RTC. * @param[in] device rx8130ce device * @param[in] dt Pointer to RtcDateTime to write (year must be 2000–2099) * @return ERROR_NONE on success, ERROR_INVALID_ARGUMENT if any field is out of range */ error_t rx8130ce_set_datetime(struct Device* device, const struct RtcDateTime* dt); #ifdef __cplusplus } #endif