summaryrefslogtreecommitdiffstats
path: root/hal/hwconfig.hpp
blob: 2195b8ea06f292002aaa826f28ce794aa19ebc1b (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