NanoVNA/nanovna.h

143 lines
3.4 KiB
C
Raw Normal View History

2016-09-05 00:27:44 +02:00
extern void I2CWrite(int addr, uint8_t d0, uint8_t d1);
typedef struct {
int target_level;
int gain_hysteresis;
int attack;
int attack_scale;
int decay;
int decay_scale;
} tlv320aic3204_agc_config_t;
extern void tlv320aic3204_init(void);
extern void tlv320aic3204_set_gain(int lgain, int rgain);
extern void tlv320aic3204_set_digital_gain(int gain);
extern void tlv320aic3204_set_volume(int gain);
extern void tlv320aic3204_agc_config(tlv320aic3204_agc_config_t *conf);
2016-09-05 01:33:05 +02:00
extern void tlv320aic3204_select_in1(void);
extern void tlv320aic3204_select_in3(void);
2016-10-18 00:08:55 +02:00
extern void tlv320aic3204_adc_filter_enable(int enable);
2016-09-05 00:27:44 +02:00
extern void ui_init(void);
extern void ui_process(void);
// 5ms @ 48kHz
2016-09-30 02:42:49 +02:00
#define AUDIO_BUFFER_LEN 96
2016-09-05 00:27:44 +02:00
extern int16_t rx_buffer[];
extern int16_t tx_buffer[];
2016-09-18 03:11:18 +02:00
#define STATE_LEN 32
2016-09-30 02:42:49 +02:00
#define SAMPLE_LEN 48
2016-09-05 00:27:44 +02:00
2016-09-18 03:11:18 +02:00
extern int16_t ref_state[];
extern int16_t ref_buf[];
extern int16_t samp_buf[];
2016-09-19 02:31:50 +02:00
//extern int16_t refq_buf[];
extern int16_t refiq_buf[];
2016-09-18 03:11:18 +02:00
void dsp_process(int16_t *src, size_t len);
2016-09-28 15:48:53 +02:00
void calclate_gamma(float *gamma);
2016-09-05 00:27:44 +02:00
2016-09-24 03:25:13 +02:00
int si5351_set_frequency_with_offset(int freq, int offset, uint8_t drive_strength);
2016-09-26 17:06:00 +02:00
2016-10-28 13:50:51 +02:00
#define RGB565(b,r,g) ( (((b)<<8)&0xfc00) | (((r)<<2)&0x03e0) | (((g)>>3)&0x001f) )
extern uint16_t spi_buffer[1024];
2016-09-26 17:06:00 +02:00
void ili9341_init(void);
void ili9341_test(int mode);
2016-10-28 13:50:51 +02:00
void ili9341_bulk(int x, int y, int w, int h);
void ili9341_fill(int x, int y, int w, int h, int color);
void ili9341_drawchar_5x7(uint8_t ch, int x, int y, uint16_t fg, uint16_t bg);
void ili9341_drawstring_5x7(char *str, int x, int y, uint16_t fg, uint16_t bg);
void plot_init(void);
2016-09-26 17:06:00 +02:00
2016-09-30 02:42:49 +02:00
void set_sweep(int32_t start, int stop);
void redraw(void);
2016-09-28 01:47:46 +02:00
2016-10-16 17:05:19 +02:00
#define TRACES_MAX 4
enum {
TRC_LOGMAG, TRC_PHASE, TRC_SMITH, TRC_ADMIT, TRC_POLAR, TRC_LINEAR, TRC_SWR
};
2016-10-28 19:44:09 +02:00
extern const char *trc_type_name[];
2016-10-16 17:05:19 +02:00
typedef struct {
int enabled;
int type;
int channel;
float scale;
2016-10-16 17:05:19 +02:00
uint16_t color;
uint8_t polar;
} trace_t;
extern trace_t trace[TRACES_MAX];
extern float measured[2][101][2];
void trace_get_info(int t, char *buf, int len);
2016-10-16 17:05:19 +02:00
2016-10-14 14:47:00 +02:00
#define CAL_LOAD 0
#define CAL_OPEN 1
#define CAL_SHORT 2
#define CAL_THRU 3
#define CAL_ISOLN 4
#define CALSTAT_LOAD (1<<0)
#define CALSTAT_OPEN (1<<1)
#define CALSTAT_SHORT (1<<2)
#define CALSTAT_THRU (1<<3)
#define CALSTAT_ISOLN (1<<4)
#define CALSTAT_ES (1<<5)
#define CALSTAT_ER (1<<6)
#define CALSTAT_ET (1<<7)
#define CALSTAT_ED CALSTAT_LOAD
#define CALSTAT_EX CALSTAT_ISOLN
#define CALSTAT_APPLY (1<<8)
2016-10-14 14:47:00 +02:00
#define ETERM_ED 0 /* error term directivity */
2016-10-19 00:18:41 +02:00
#define ETERM_ES 1 /* error term source match */
#define ETERM_ER 2 /* error term refrection tracking */
#define ETERM_ET 3 /* error term transmission tracking */
#define ETERM_EX 4 /* error term isolation */
2016-10-14 14:47:00 +02:00
void plot_into_index(float measured[2][101][2]);
2016-10-13 13:25:31 +02:00
void draw_cell_all(void);
2016-09-26 17:06:00 +02:00
extern const uint16_t x5x7_bits [];
extern const uint32_t numfont20x24[][24];
2016-10-16 13:02:38 +02:00
int caldata_save(void);
int caldata_recall(void);
typedef struct {
int32_t magic;
int32_t _freq_start;
int32_t _freq_stop;
int16_t _sweep_points;
uint16_t _cal_status;
uint32_t _frequencies[101];
float _cal_data[5][101][2];
int32_t checksum;
} config_t;
#define CONFIG_MAGIC 0x436f4e45 /* 'CoNF' */
extern config_t *active;
extern config_t current_config;
#define freq_start active->_freq_start
#define freq_stop active->_freq_stop
#define sweep_points active->_sweep_points
#define cal_status active->_cal_status
#define frequencies active->_frequencies
#define cal_data active->_cal_data