mirror of
https://github.com/DreamSourceLab/DSView.git
synced 2025-01-13 13:32:53 +08:00
demo:windows can not load demo file
This commit is contained in:
parent
9fb249fef9
commit
d34c4a2e78
File diff suppressed because it is too large
Load Diff
@ -25,263 +25,6 @@
|
||||
#include "../../libsigrok-internal.h"
|
||||
#include <minizip/unzip.h>
|
||||
|
||||
enum DEMO_PATTERN {
|
||||
PATTERN_INVALID = -1,
|
||||
PATTERN_RANDOM = 0,
|
||||
PATTERN_DEFAULT = 1,
|
||||
};
|
||||
|
||||
enum DEMO_LOGIC_CHANNEL_ID {
|
||||
DEMO_LOGIC125x16 = 16,
|
||||
DEMO_LOGIC250x12 = 17,
|
||||
DEMO_LOGIC500x6 = 18,
|
||||
DEMO_LOGIC1000x3 = 19,
|
||||
};
|
||||
|
||||
enum DEMO_CHANNEL_ID {
|
||||
DEMO_LOGIC100x16 = 0,
|
||||
DEMO_ANALOG10x2 = 1 ,
|
||||
DEMO_DSO200x2 = 2,
|
||||
};
|
||||
|
||||
enum DEMO_LOGIC_CHANNEL_INDEX {
|
||||
LOGIC125x16 = 0,
|
||||
LOGIC250x12 = 1,
|
||||
LOGIC500x6 = 2,
|
||||
LOGIC1000x3 = 3,
|
||||
};
|
||||
|
||||
static char *pattern_strings_logic[100] = {"random"};
|
||||
static char *pattern_strings_dso[100] = {"random"};
|
||||
static char *pattern_strings_analog[100] = {"random"};
|
||||
static int pattern_logic_count = 1;
|
||||
static int pattern_dso_count= 1;
|
||||
static int pattern_analog_count= 1;
|
||||
|
||||
static uint64_t samplerates_file[1];
|
||||
static uint64_t samplecounts_file[1];
|
||||
static GTimer *packet_interval = NULL;
|
||||
static GTimer *run_time = NULL;
|
||||
static gboolean load_data = TRUE;
|
||||
static gboolean is_change = FALSE;
|
||||
static int enabled_probe_num;
|
||||
static uint64_t packet_len;
|
||||
static gdouble packet_time;
|
||||
static uint64_t post_data_len;
|
||||
extern char DS_RES_PATH[500];
|
||||
static gboolean vdiv_change;
|
||||
static gboolean timebase_change;
|
||||
static gboolean offset_change;
|
||||
static gboolean instant = FALSE;
|
||||
static int max_probe_num = 0;
|
||||
extern char DS_RES_PATH[500];
|
||||
uint8_t sample_generator;
|
||||
static int64_t analog_count = 0;
|
||||
static uint64_t total_num = 0;
|
||||
static uint64_t logci_cur_packet_num = 0;
|
||||
static uint64_t logic_total_packet_num = 0;
|
||||
static uint8_t logic_probe = 0;
|
||||
static uint8_t logic_probe_num = 16;
|
||||
static gboolean channel_mode_change = FALSE;
|
||||
static uint64_t packet_num;
|
||||
static void *logic_buf;
|
||||
static uint8_t probe_list[16];
|
||||
|
||||
static enum DEMO_LOGIC_CHANNEL_ID ch_mode;
|
||||
static enum DEMO_LOGIC_CHANNEL_INDEX logic_index;
|
||||
|
||||
struct session_packet_buffer;
|
||||
|
||||
static const uint64_t vdivs10to2000[] = {
|
||||
SR_mV(10),
|
||||
SR_mV(20),
|
||||
SR_mV(50),
|
||||
SR_mV(100),
|
||||
SR_mV(200),
|
||||
SR_mV(500),
|
||||
SR_V(1),
|
||||
SR_V(2),
|
||||
0,
|
||||
};
|
||||
|
||||
struct session_vdev
|
||||
{
|
||||
int version;
|
||||
unzFile archive; // zip document
|
||||
int capfile; // current inner file open status
|
||||
|
||||
uint16_t samplerates_min_index;
|
||||
uint16_t samplerates_max_index;
|
||||
|
||||
void *logic_buf;
|
||||
uint64_t logic_buf_len;
|
||||
|
||||
void *dso_buf;
|
||||
|
||||
void *analog_buf;
|
||||
uint64_t analog_buf_len;
|
||||
uint64_t analog_read_pos;
|
||||
|
||||
int cur_channel;
|
||||
int cur_block;
|
||||
int num_blocks;
|
||||
uint64_t samplerate;
|
||||
uint64_t total_samples;
|
||||
int64_t trig_time;
|
||||
uint64_t trig_pos;
|
||||
int cur_probes;
|
||||
int num_probes;
|
||||
int enabled_probes;
|
||||
uint64_t timebase;
|
||||
uint64_t max_timebase;
|
||||
uint64_t min_timebase;
|
||||
uint8_t unit_bits;
|
||||
uint32_t ref_min;
|
||||
uint32_t ref_max;
|
||||
uint8_t max_height;
|
||||
struct sr_status mstatus;
|
||||
struct session_packet_buffer *packet_buffer;
|
||||
|
||||
int is_loop;
|
||||
};
|
||||
|
||||
#define SESSION_MAX_CHANNEL_COUNT 512
|
||||
|
||||
struct session_packet_buffer
|
||||
{
|
||||
void *post_buf;
|
||||
uint64_t post_buf_len;
|
||||
uint64_t post_len;
|
||||
|
||||
uint64_t block_buf_len;
|
||||
uint64_t block_chan_read_pos;
|
||||
uint64_t block_data_len;
|
||||
void *block_bufs[SESSION_MAX_CHANNEL_COUNT];
|
||||
uint64_t block_read_positions[SESSION_MAX_CHANNEL_COUNT];
|
||||
};
|
||||
|
||||
struct DEMO_caps {
|
||||
uint64_t mode_caps;
|
||||
uint64_t feature_caps;
|
||||
uint64_t channels;
|
||||
uint64_t hw_depth;
|
||||
uint64_t dso_depth;
|
||||
uint8_t intest_channel;
|
||||
const uint64_t *vdivs;
|
||||
uint8_t vga_id;
|
||||
uint16_t default_channelmode;
|
||||
int default_pattern; /**enum DEMO_PATTERN type*/
|
||||
uint64_t default_timebase;
|
||||
};
|
||||
|
||||
struct DEMO_profile {
|
||||
const char *vendor;
|
||||
const char *model;
|
||||
const char *model_version;
|
||||
|
||||
struct DEMO_caps dev_caps;
|
||||
};
|
||||
|
||||
|
||||
|
||||
struct DEMO_channels {
|
||||
enum DEMO_CHANNEL_ID id;
|
||||
enum OPERATION_MODE mode;
|
||||
enum CHANNEL_TYPE type;
|
||||
|
||||
uint16_t num;
|
||||
uint8_t unit_bits;
|
||||
uint64_t default_samplerate;
|
||||
uint64_t default_samplelimit;
|
||||
uint64_t min_samplerate;
|
||||
uint64_t max_samplerate;
|
||||
|
||||
const char *descr;
|
||||
};
|
||||
|
||||
struct demo_context {
|
||||
const struct DEMO_profile *profile;
|
||||
|
||||
int pipe_fds[2];
|
||||
GIOChannel *channel;
|
||||
uint64_t cur_samplerate;
|
||||
uint64_t limit_samples;
|
||||
uint64_t limit_samples_show;
|
||||
uint64_t limit_msec;
|
||||
uint8_t sample_generator;
|
||||
uint64_t samples_counter;
|
||||
void *cb_data;
|
||||
int64_t starttime;
|
||||
int stop;
|
||||
uint64_t timebase;
|
||||
enum DEMO_CHANNEL_ID ch_mode;
|
||||
uint16_t samplerates_min_index;
|
||||
uint16_t samplerates_max_index;
|
||||
gboolean instant;
|
||||
uint8_t max_height;
|
||||
uint64_t samples_not_sent;
|
||||
|
||||
uint16_t *buf;
|
||||
uint64_t pre_index;
|
||||
struct sr_status mstatus;
|
||||
|
||||
int trigger_stage;
|
||||
uint16_t trigger_mask;
|
||||
uint16_t trigger_value;
|
||||
uint16_t trigger_edge;
|
||||
uint8_t trigger_slope;
|
||||
uint8_t trigger_source;
|
||||
};
|
||||
|
||||
static const uint64_t samplerates[] = {
|
||||
SR_HZ(10),
|
||||
SR_HZ(20),
|
||||
SR_HZ(50),
|
||||
SR_HZ(100),
|
||||
SR_HZ(200),
|
||||
SR_HZ(500),
|
||||
SR_KHZ(1),
|
||||
SR_KHZ(2),
|
||||
SR_KHZ(5),
|
||||
SR_KHZ(10),
|
||||
SR_KHZ(20),
|
||||
SR_KHZ(40),
|
||||
SR_KHZ(50),
|
||||
SR_KHZ(100),
|
||||
SR_KHZ(200),
|
||||
SR_KHZ(400),
|
||||
SR_KHZ(500),
|
||||
SR_MHZ(1),
|
||||
SR_MHZ(2),
|
||||
SR_MHZ(4),
|
||||
SR_MHZ(5),
|
||||
SR_MHZ(10),
|
||||
SR_MHZ(20),
|
||||
SR_MHZ(25),
|
||||
SR_MHZ(40),
|
||||
SR_MHZ(50),
|
||||
SR_MHZ(100),
|
||||
SR_MHZ(125),
|
||||
SR_MHZ(250),
|
||||
SR_MHZ(400),
|
||||
SR_MHZ(500),
|
||||
SR_MHZ(800),
|
||||
SR_GHZ(1),
|
||||
SR_GHZ(2),
|
||||
SR_GHZ(5),
|
||||
SR_GHZ(10),
|
||||
};
|
||||
|
||||
/* hardware Capabilities */
|
||||
#define CAPS_MODE_LOGIC (1 << 0)
|
||||
#define CAPS_MODE_ANALOG (1 << 1)
|
||||
#define CAPS_MODE_DSO (1 << 2)
|
||||
|
||||
#define CAPS_FEATURE_NONE 0
|
||||
// zero calibration ability
|
||||
#define CAPS_FEATURE_ZERO (1 << 4)
|
||||
/* end */
|
||||
|
||||
#define DEFAULT_LOGIC_FILE "protocol"
|
||||
|
||||
#define SEC 1
|
||||
@ -296,12 +39,10 @@ static const uint64_t samplerates[] = {
|
||||
#define LOGIC_MAX_PACKET_NUM(n) (LOGIC_POST_DATA_PER_SECOND(n))/(LOGIC_MAX_PACKET_LEN)
|
||||
#define LOGIC_MAX_PACKET_TIME(n) ((SEC)/(gdouble)(LOGIC_MAX_PACKET_NUM(n)))
|
||||
|
||||
#define LOGIC_BLOCK_LEN SR_MB(2)
|
||||
#define LOGIC_BUF_LEN SR_MB(2)
|
||||
|
||||
#define LOGIC_EMPTY_FREQ SR_MHZ(100)
|
||||
#define LOGIC_EMPTY_END 9
|
||||
#define LOGIC_FULL 0
|
||||
|
||||
#define LOGIC_FREQ_LIMIT SR_MHZ(100)
|
||||
|
||||
#define DSO_PACKET_NUM_PER_SEC (gdouble)200
|
||||
#define DSO_PACKET_TIME ((SEC)/(DSO_PACKET_NUM_PER_SEC))
|
||||
@ -318,7 +59,7 @@ static const uint64_t samplerates[] = {
|
||||
#define ANALOG_MIN_PACKET_NUM(n) ((ANALOG_POST_DATA_PER_SECOND(n))/(ANALOG_MIN_PACKET_LEN))
|
||||
#define ANALOG_PACKET_ALIGN 2
|
||||
|
||||
#define LOGIC_HW_DEPTH (SR_GHZ(16))
|
||||
#define LOGIC_HW_DEPTH (SR_GHZ(10))
|
||||
|
||||
|
||||
#define LOGIC_MAX_PROBE_NUM 16
|
||||
@ -383,6 +124,232 @@ static const uint64_t samplerates[] = {
|
||||
#define ANALOG_DEFAULT_MAP_MAX (gdouble)+5
|
||||
|
||||
|
||||
enum DEMO_PATTERN {
|
||||
PATTERN_INVALID = -1,
|
||||
PATTERN_RANDOM = 0,
|
||||
PATTERN_DEFAULT = 1,
|
||||
};
|
||||
|
||||
enum DEMO_LOGIC_CHANNEL_ID {
|
||||
DEMO_LOGIC125x16 = 16,
|
||||
DEMO_LOGIC250x12 = 17,
|
||||
DEMO_LOGIC500x6 = 18,
|
||||
DEMO_LOGIC1000x3 = 19,
|
||||
};
|
||||
|
||||
enum DEMO_CHANNEL_ID {
|
||||
DEMO_LOGIC100x16 = 0,
|
||||
DEMO_ANALOG10x2 = 1 ,
|
||||
DEMO_DSO200x2 = 2,
|
||||
};
|
||||
|
||||
enum DEMO_LOGIC_CHANNEL_INDEX {
|
||||
LOGIC125x16 = 0,
|
||||
LOGIC250x12 = 1,
|
||||
LOGIC500x6 = 2,
|
||||
LOGIC1000x3 = 3,
|
||||
};
|
||||
|
||||
static char *pattern_strings_logic[100] = {"random"};
|
||||
static char *pattern_strings_dso[100] = {"random"};
|
||||
static char *pattern_strings_analog[100] = {"random"};
|
||||
static int pattern_logic_count = 1;
|
||||
static int pattern_dso_count= 1;
|
||||
static int pattern_analog_count= 1;
|
||||
|
||||
static uint64_t samplerates_file[1];
|
||||
static uint64_t samplecounts_file[1];
|
||||
|
||||
static GTimer *packet_interval = NULL;
|
||||
static GTimer *run_time = NULL;
|
||||
|
||||
static int max_probe_num = 0;
|
||||
extern char DS_RES_PATH[500];
|
||||
static int64_t analog_count = 0;
|
||||
static gboolean channel_mode_change = FALSE;
|
||||
static uint64_t packet_num;
|
||||
static void *logic_post_buf = NULL;
|
||||
|
||||
|
||||
struct session_packet_buffer;
|
||||
|
||||
static const uint64_t vdivs10to2000[] = {
|
||||
SR_mV(10),
|
||||
SR_mV(20),
|
||||
SR_mV(50),
|
||||
SR_mV(100),
|
||||
SR_mV(200),
|
||||
SR_mV(500),
|
||||
SR_V(1),
|
||||
SR_V(2),
|
||||
0,
|
||||
};
|
||||
|
||||
struct session_vdev
|
||||
{
|
||||
int version;
|
||||
unzFile archive; // zip document
|
||||
int capfile; // current inner file open status
|
||||
|
||||
uint16_t samplerates_min_index;
|
||||
uint16_t samplerates_max_index;
|
||||
|
||||
uint8_t sample_generator;
|
||||
|
||||
void *logic_buf;
|
||||
uint64_t logic_buf_len;
|
||||
|
||||
void *dso_buf;
|
||||
|
||||
void *analog_buf;
|
||||
uint64_t analog_buf_len;
|
||||
uint64_t analog_read_pos;
|
||||
|
||||
int cur_block;
|
||||
int num_blocks;
|
||||
uint64_t samplerate;
|
||||
uint64_t total_samples;
|
||||
int64_t trig_time;
|
||||
uint64_t trig_pos;
|
||||
int num_probes;
|
||||
int enabled_probes;
|
||||
uint64_t timebase;
|
||||
uint64_t max_timebase;
|
||||
uint64_t min_timebase;
|
||||
uint8_t unit_bits;
|
||||
uint32_t ref_min;
|
||||
uint32_t ref_max;
|
||||
uint8_t max_height;
|
||||
struct sr_status mstatus;
|
||||
struct session_packet_buffer *packet_buffer;
|
||||
|
||||
//time
|
||||
uint64_t packet_len;
|
||||
gdouble packet_time;
|
||||
|
||||
//status
|
||||
gboolean instant;
|
||||
gboolean load_data;
|
||||
gboolean vdiv_change;
|
||||
gboolean offset_change;
|
||||
gboolean timebase_change;
|
||||
gboolean channel_mode_change;
|
||||
|
||||
//post
|
||||
uint64_t post_data_len;
|
||||
|
||||
//logic
|
||||
uint64_t logci_cur_packet_num; //dso or analog
|
||||
|
||||
uint8_t logic_sel_probe_list[LOGIC_MAX_PROBE_NUM];
|
||||
uint8_t logic_sel_probe_num;
|
||||
enum DEMO_LOGIC_CHANNEL_ID logic_ch_mode;
|
||||
enum DEMO_LOGIC_CHANNEL_INDEX logic_ch_mode_index;
|
||||
|
||||
int is_loop;
|
||||
};
|
||||
|
||||
#define SESSION_MAX_CHANNEL_COUNT 512
|
||||
|
||||
struct session_packet_buffer
|
||||
{
|
||||
void *post_buf;
|
||||
uint64_t post_buf_len;
|
||||
uint64_t post_len;
|
||||
|
||||
uint64_t block_buf_len;
|
||||
uint64_t block_chan_read_pos;
|
||||
uint64_t block_data_len;
|
||||
void *block_bufs[SESSION_MAX_CHANNEL_COUNT];
|
||||
uint64_t block_read_positions[SESSION_MAX_CHANNEL_COUNT];
|
||||
};
|
||||
|
||||
struct DEMO_caps {
|
||||
uint64_t mode_caps;
|
||||
uint64_t feature_caps;
|
||||
uint64_t channels;
|
||||
uint64_t hw_depth;
|
||||
uint64_t dso_depth;
|
||||
uint8_t intest_channel;
|
||||
const uint64_t *vdivs;
|
||||
uint8_t vga_id;
|
||||
uint16_t default_channelmode;
|
||||
int default_pattern; /**enum DEMO_PATTERN type*/
|
||||
uint64_t default_timebase;
|
||||
};
|
||||
|
||||
struct DEMO_profile {
|
||||
const char *vendor;
|
||||
const char *model;
|
||||
const char *model_version;
|
||||
|
||||
struct DEMO_caps dev_caps;
|
||||
};
|
||||
|
||||
struct DEMO_channels {
|
||||
enum DEMO_CHANNEL_ID id;
|
||||
enum OPERATION_MODE mode;
|
||||
enum CHANNEL_TYPE type;
|
||||
|
||||
uint16_t num;
|
||||
uint8_t unit_bits;
|
||||
uint64_t default_samplerate;
|
||||
uint64_t default_samplelimit;
|
||||
uint64_t min_samplerate;
|
||||
uint64_t max_samplerate;
|
||||
|
||||
const char *descr;
|
||||
};
|
||||
|
||||
static const uint64_t samplerates[] = {
|
||||
SR_HZ(10),
|
||||
SR_HZ(20),
|
||||
SR_HZ(50),
|
||||
SR_HZ(100),
|
||||
SR_HZ(200),
|
||||
SR_HZ(500),
|
||||
SR_KHZ(1),
|
||||
SR_KHZ(2),
|
||||
SR_KHZ(5),
|
||||
SR_KHZ(10),
|
||||
SR_KHZ(20),
|
||||
SR_KHZ(40),
|
||||
SR_KHZ(50),
|
||||
SR_KHZ(100),
|
||||
SR_KHZ(200),
|
||||
SR_KHZ(400),
|
||||
SR_KHZ(500),
|
||||
SR_MHZ(1),
|
||||
SR_MHZ(2),
|
||||
SR_MHZ(4),
|
||||
SR_MHZ(5),
|
||||
SR_MHZ(10),
|
||||
SR_MHZ(20),
|
||||
SR_MHZ(25),
|
||||
SR_MHZ(40),
|
||||
SR_MHZ(50),
|
||||
SR_MHZ(100),
|
||||
SR_MHZ(125),
|
||||
SR_MHZ(250),
|
||||
SR_MHZ(400),
|
||||
SR_MHZ(500),
|
||||
SR_MHZ(800),
|
||||
SR_GHZ(1),
|
||||
SR_GHZ(2),
|
||||
SR_GHZ(5),
|
||||
SR_GHZ(10),
|
||||
};
|
||||
|
||||
/* hardware Capabilities */
|
||||
#define CAPS_MODE_LOGIC (1 << 0)
|
||||
#define CAPS_MODE_ANALOG (1 << 1)
|
||||
#define CAPS_MODE_DSO (1 << 2)
|
||||
|
||||
#define CAPS_FEATURE_NONE 0
|
||||
// zero calibration ability
|
||||
#define CAPS_FEATURE_ZERO (1 << 4)
|
||||
/* end */
|
||||
|
||||
|
||||
static const char *maxHeights[] = {
|
||||
"1X",
|
||||
@ -480,71 +447,7 @@ static const struct DEMO_profile supported_Demo[] = {
|
||||
{ 0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}
|
||||
};
|
||||
|
||||
static const int const_dc = 1.95 / 10 * 255;
|
||||
static const int sinx[] = {
|
||||
0, 2, 3, 5, 6, 8, 9, 11, 12, 14, 16, 17, 18, 20, 21, 23, 24, 26, 27, 28,
|
||||
30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 41, 42, 43, 44, 45, 45, 46, 47, 47,
|
||||
48, 48, 49, 49, 49, 49, 50, 50, 50, 50, 50, 50, 50, 50, 50, 49, 49, 49, 48, 48,
|
||||
47, 47, 46, 46, 45, 44, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 31, 30,
|
||||
29, 28, 26, 25, 24, 22, 21, 19, 18, 16, 15, 13, 12, 10, 9, 7, 6, 4, 2, 1,
|
||||
-1, -2, -4, -6, -7, -9, -10, -12, -13, -15, -16, -18, -19, -21, -22, -24, -25, -26, -28, -29,
|
||||
-30, -31, -33, -34, -35, -36, -37, -38, -39, -40, -41, -42, -43, -44, -44, -45, -46, -46, -47, -47,
|
||||
-48, -48, -49, -49, -49, -50, -50, -50, -50, -50, -50, -50, -50, -50, -49, -49, -49, -49, -48, -48,
|
||||
-47, -47, -46, -45, -45, -44, -43, -42, -41, -41, -40, -39, -38, -37, -35, -34, -33, -32, -31, -30,
|
||||
-28, -27, -26, -24, -23, -21, -20, -18, -17, -16, -14, -12, -11, -9, -8, -6, -5, -3, -2, 0,
|
||||
};
|
||||
|
||||
static const int sqrx[] = {
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
-50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
|
||||
-50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
|
||||
-50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
|
||||
-50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
|
||||
-50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50, -50,
|
||||
};
|
||||
|
||||
static const int trix[] = {
|
||||
0, 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, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
|
||||
40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41,
|
||||
40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21,
|
||||
20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1,
|
||||
0, -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, -28, -29, -30, -31, -32, -33, -34, -35, -36, -37, -38, -39,
|
||||
-40, -41, -42, -43, -44, -45, -46, -47, -48, -49, -50, -49, -48, -47, -46, -45, -44, -43, -42, -41,
|
||||
-40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21,
|
||||
-20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1,
|
||||
};
|
||||
|
||||
static const int sawx[] = {
|
||||
0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
|
||||
10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19,
|
||||
20, 20, 21, 21, 22, 22, 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 29, 29,
|
||||
30, 30, 31, 31, 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, 39, 39,
|
||||
40, 40, 41, 41, 42, 42, 43, 43, 44, 44, 45, 45, 46, 46, 47, 47, 48, 48, 49, 50,
|
||||
-50, -49, -48, -48, -47, -47, -46, -46, -45, -45, -44, -44, -43, -43, -42, -42, -41, -41, -40, -40,
|
||||
-39, -39, -38, -38, -37, -37, -36, -36, -35, -35, -34, -34, -33, -33, -32, -32, -31, -31, -30, -30,
|
||||
-29, -29, -28, -28, -27, -27, -26, -26, -25, -25, -24, -24, -23, -23, -22, -22, -21, -21, -20, -20,
|
||||
-19, -19, -18, -18, -17, -17, -16, -16, -15, -15, -14, -14, -13, -13, -12, -12, -11, -11, -10, -10,
|
||||
-9, -9, -8, -8, -7, -7, -6, -6, -5, -5, -4, -4, -3, -3, -2, -2, -1, -1, 0, 0,
|
||||
};
|
||||
|
||||
static const int ranx[] = {
|
||||
-4, 47, -49, -1, -3, 6, -29, 26, 1, 14, -39, -38, 36, 17, 26, -37, -2, 27, -20, -15,
|
||||
-49, -46, 36, 16, 29, 23, -30, -3, 28, -2, -6, 46, 43, 50, -42, 30, 48, -50, -38, -30,
|
||||
7, -36, -20, -24, -10, -34, -24, 3, -48, 46, -11, 22, 19, 28, 39, -49, -31, 34, 2, -29,
|
||||
9, 35, 8, 10, 38, 30, 17, 48, -3, -6, -28, 46, -19, 18, -43, -9, -31, -32, -41, 16,
|
||||
-10, 46, -4, 4, -32, -43, -45, -39, -33, 28, 24, -17, -43, 42, -7, 36, -44, -5, 9, 39,
|
||||
17, -40, 12, 16, -42, -1, 2, -9, 50, -8, 27, 27, 14, 8, -18, 12, -8, 26, -8, 12,
|
||||
-35, 49, 35, 2, -26, -24, -31, 33, 15, -47, 34, 46, -1, -12, 14, 32, -25, -31, -35, -18,
|
||||
-48, -21, -5, 1, -27, -14, 12, 49, -11, 33, 31, 35, -36, 19, 20, 44, 29, -48, 14, -43,
|
||||
1, 30, -12, 44, 20, 49, 29, -43, 42, 30, -34, 24, 20, -40, 33, -12, 13, -45, 45, -24,
|
||||
-41, 36, -8, 46, 47, -34, 28, -39, 7, -32, 38, -27, 28, -3, -8, 43, -37, -24, 6, 3,
|
||||
};
|
||||
static int vdev_init(struct sr_dev_inst* sdi);
|
||||
|
||||
static void dso_status_update(struct session_vdev *vdev);
|
||||
|
||||
@ -556,11 +459,9 @@ static void logic_adjust_samplerate(struct session_vdev * vdev);
|
||||
|
||||
static void init_analog_random_data(struct session_vdev * vdev);
|
||||
|
||||
static void delay_time();
|
||||
static int delay_time(struct session_vdev *vdev);
|
||||
|
||||
static void get_last_packet_len(struct sr_datafeed_logic *logic,const struct session_vdev * vdev);
|
||||
|
||||
static void reset_enabled_probe_num(struct sr_dev_inst *sdi);
|
||||
static void get_last_packet_len(struct sr_datafeed_logic *logic,struct session_vdev * vdev);
|
||||
|
||||
static void init_pattern_mode_list();
|
||||
|
||||
@ -568,7 +469,7 @@ static int get_bit(uint64_t timebase);
|
||||
|
||||
static int get_pattern_mode_index_by_string(uint8_t device_mode , const char* str);
|
||||
|
||||
static void get_pattern_mode_from_file(uint8_t device_mode);
|
||||
static int get_pattern_mode_from_file(uint8_t device_mode);
|
||||
|
||||
static void scan_dsl_file(struct sr_dev_inst *sdi);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user