// (C) 2020 Philip Endecott.
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENCE.txt or copy at https://www.boost.org/LICENSE_1_0.txt

#ifndef lipstick_clocks_hh
#define lipstick_clocks_hh

constexpr int f_osc  = 19'660'800;
constexpr int f_cclk = f_osc;         // The PLL is not enabled so CCLK = OSC.
constexpr int f_pclk = f_cclk / 4;    // The APB divider by default divides by 4.


#endif
