blob: 2e93340f624ec8c4ede495b240a29b5591a5dea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2012 Ettus Research LLC
#ifndef INCLUDED_B250_INIT_H
#define INCLUDED_B250_INIT_H
#include "x300_defs.h"
#include "x300_fw_common.h"
void x300_init(x300_eeprom_map_t *eeprom_map);
void x300_serial_loader_run1(void);
typedef enum
{
DCO_156p25,
DCO_125,
DCO_10
} dco_freq_t;
#endif /* INCLUDED_B250_INIT_H */
|