RTC. Documentation improvements.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3406 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
barthess 2011-09-25 10:06:23 +00:00
parent 41fd0fb5fb
commit 17a20fe36a
1 changed files with 10 additions and 10 deletions

View File

@ -59,24 +59,24 @@
/* Driver data structures and types. */
/*===========================================================================*/
/**
* @brief Structure representing an RTC time value.
*/
typedef struct {
/**
* @brief Seconds sins UNIX epoch.
*/
uint32_t tv_sec;
/**
* @brief Fractional part.
*/
uint32_t tv_msec;
}RTCDateTime;
/**
* @brief Structure representing an RTC driver.
* @note This driver if dummy when callbacks disabled.
* @note This driver is dummy when callbacks disabled.
*/
struct RTCDriver{
#if RTC_SUPPORTS_CALLBACKS