1 /* USRP E310 Firmware MCU specific settings
2  * Copyright (C) 2014 Ettus Research
3  * This file is part of the USRP E310 Firmware
4  * The USRP E310 Firmware is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  * The USRP E310 Firmware is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  * You should have received a copy of the GNU General Public License
13  * along with the USRP E310 Firmware. If not, see <http://www.gnu.org/licenses/>.
14  */
15 
16 /**
17  * \file mcu_settings.h
18  * \brief MCU specific settings
19  */
20 #ifndef MCU_SETTINGS_H
21 #define MCU_SETTINGS_H
22 
23 #define F_CPU 8000000UL
24 
25 #define VERSION_MAJ 2
26 #define VERSION_MIN 2
27 
28 #endif /* MCU_SETTINGS_H */
29