Actions
Documentation #18
ferméSOP 002 : _typedef_
Début:
2014-08-24
Echéance:
% réalisé:
100%
Temps estimé:
0.50 h
Description
Documenter les typdef
Actions
Ajouté par Patrice Nadeau il y a plus de 10 ans. Mis à jour il y a plus de 9 ans.
100%
Description
Documenter les typdef
Format
/** Unsigned integer 8 bits */
typedef unsigned int new_t
/** Type of structure in the ds1305 library */
typedef struct {
/** @brief last two digits : ≥ 00, ≤ 99 */
uint8_t year;
/** @brief 01 - 12 */
uint8_t month;
/** @brief 01 - 31 */
uint8_t date;
/** @brief 1 - 7 */
uint8_t day;
/** @brief 00 - 23 */
uint8_t hours;
/** @brief 00 - 59 */
uint8_t minutes;
/** @brief 00 - 59 */
uint8_t seconds;
} ds1305_time_t;