summaryrefslogtreecommitdiffstats
path: root/hal/hwconfig.hpp
blob: 8a5406ff4d661ec05ef0267a77dd52eec0b7e5f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 
 * File:   hwconfig.hpp
 * Author: naopross
 */

#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