mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
15 lines
184 B
C
15 lines
184 B
C
/*! \file ucs.h
|
|
\brief Clocking functions.
|
|
*/
|
|
|
|
//! Fast mode.
|
|
void ucs_fast();
|
|
|
|
//! Slow mode.
|
|
void ucs_slow();
|
|
|
|
//! Initialize the XT1 crystal, and stabilize it.
|
|
void ucs_init();
|
|
|
|
|