OSCR
Open Source Cartridge Reader
Loading...
Searching...
No Matches
ClockGen.h
1/********************************************************************
2* Open Source Cartridge Reader *
3********************************************************************/
4#pragma once
5#if !defined(OSCR_CLOCKGEN_H_)
6# define OSCR_CLOCKGEN_H_
7
8# include <si5351.h>
9# include "syslibinc.h"
10
11// Clockgen Calibration
12# ifdef OPTION_CLOCKGEN_CALIBRATION
13# include <FreqCount.h>
14# endif
15
16namespace OSCR
17{
18 namespace ClockGen
19 {
20#ifdef ENABLE_CLOCKGEN
21 extern Si5351 clockgen;
22#endif
23
29 extern bool initialize();
30
34 extern void stop();
35
41 extern bool exists();
42
48 extern bool existsIfEnabled();
49 }
50}
51
52#endif /* OSCR_CLOCKGEN_H_ */
Main program.
Definition Storage.h:13