First pass WBX USRP2 driver
[debian/gnuradio] / usrp2 / firmware / lib / adf4350.h
1 /*
2  * Copyright 2010 Free Software Foundation, Inc.
3  *
4  * Copyright 2010 Ettus Research LLC
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #ifndef ADF4350_H
22 #define ADF4350_H
23
24 #include <db_base.h>
25 #include <stdbool.h>
26 #include <stdint.h>
27
28 #define DIV_ROUND(num, denom) (((num) + ((denom)/2))/(denom))
29 #define UINT8_C(num) ((uint8_t) (num))
30 #define UINT16_C(num) ((uint16_t) (num))
31
32 void adf4350_init(struct db_base *dbb);
33 //void adf4350_update(void);
34 bool adf4350_get_locked(struct db_base *dbb);
35 void adf4350_enable(bool enable, struct db_base *dbb);
36 void adf4350_write(uint8_t addr, uint32_t data, struct db_base *dbb);
37 bool adf4350_set_freq(u2_fxpt_freq_t freq, struct db_base *dbb);
38 u2_fxpt_freq_t adf4350_get_freq(struct db_base *dbb);
39 u2_fxpt_freq_t adf4350_get_max_freq(void);
40 u2_fxpt_freq_t adf4350_get_min_freq(void);
41
42 #endif /* ADF4350_H */