summaryrefslogtreecommitdiffstats
path: root/hal/hwconfig.hpp
blob: 0cd38ac4074d8fca896c2842091f3dd9f7ce7b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef HWCONFIG_HPP
#define HWCONFIG_HPP

#define _XTAL_FREQ  8000000UL

namespace hw
{
	void reglock();
	void regunlock();
}

namespace osc
{
	void initialize();
}

namespace interrupts
{
	void initialize();
}

#endif