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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
#include <stdio.h>
#include <sys/types.h>
#include <fcntl.h>
#include <pthread.h>
#include <stdlib.h>
#include <unistd.h>
#include <stddef.h>
#include <sys/mman.h>
#include "usrp_e.h"
// max length #define PKT_DATA_LENGTH 1016
static int packet_data_length;
static int error;
struct pkt {
int len;
int checksum;
int seq_num;
short data[];
};
static int fp;
static int calc_checksum(struct pkt *p)
{
int i, sum;
i = 0;
sum = 0;
for (i=0; i < p->len; i++)
sum += p->data[i];
sum += p->seq_num;
sum += p->len;
return sum;
}
static void *read_thread(void *threadid)
{
char *rx_data;
int cnt, prev_seq_num, pkt_count, seq_num_failure;
struct pkt *p;
unsigned long bytes_transfered, elapsed_seconds;
struct timeval start_time, finish_time;
printf("Greetings from the reading thread!\n");
bytes_transfered = 0;
gettimeofday(&start_time, NULL);
// IMPORTANT: must assume max length packet from fpga
rx_data = malloc(2048);
p = (struct pkt *) ((void *)rx_data);
prev_seq_num = 0;
pkt_count = 0;
seq_num_failure = 0;
while (1) {
cnt = read(fp, rx_data, 2048);
if (cnt < 0)
printf("Error returned from read: %d, sequence number = %d\n", cnt, p->seq_num);
// printf("p->seq_num = %d\n", p->seq_num);
pkt_count++;
if (p->seq_num != prev_seq_num + 1) {
printf("Sequence number fail, current = %d, previous = %d, pkt_count = %d\n",
p->seq_num, prev_seq_num, pkt_count);
seq_num_failure ++;
if (seq_num_failure > 2)
error = 1;
}
prev_seq_num = p->seq_num;
if (calc_checksum(p) != p->checksum) {
printf("Checksum fail packet = %X, expected = %X, pkt_count = %d\n",
calc_checksum(p), p->checksum, pkt_count);
error = 1;
}
bytes_transfered += cnt;
if (bytes_transfered > (100 * 1000000)) {
gettimeofday(&finish_time, NULL);
elapsed_seconds = finish_time.tv_sec - start_time.tv_sec;
printf("RX data transfer rate = %f K Samples/second\n",
(float) bytes_transfered / (float) elapsed_seconds / 4000);
start_time = finish_time;
bytes_transfered = 0;
}
// printf(".");
// fflush(stdout);
// printf("\n");
}
}
static void *write_thread(void *threadid)
{
int seq_number, i, cnt;
void *tx_data;
struct pkt *p;
printf("Greetings from the write thread!\n");
tx_data = malloc(2048);
p = (struct pkt *) ((void *)tx_data);
for (i=0; i < packet_data_length; i++)
// p->data[i] = random() >> 16;
p->data[i] = i;
seq_number = 1;
while (1) {
p->seq_num = seq_number++;
if (packet_data_length > 0)
p->len = packet_data_length;
else
p->len = (random() & 0x1ff) + (1004 - 512);
p->checksum = calc_checksum(p);
cnt = write(fp, tx_data, p->len * 2 + 12);
if (cnt < 0)
printf("Error returned from write: %d\n", cnt);
// sleep(1);
}
}
int main(int argc, char *argv[])
{
pthread_t tx, rx;
long int t;
struct sched_param s = {
.sched_priority = 1
};
void *rb;
struct usrp_transfer_frame *tx_rb, *rx_rb;
if (argc < 2) {
printf("%s data_size\n", argv[0]);
return -1;
}
packet_data_length = atoi(argv[1]);
fp = open("/dev/usrp_e0", O_RDWR);
printf("fp = %d\n", fp);
rb = mmap(0, 202 * 4096, PROT_READ|PROT_WRITE, MAP_SHARED, fp, 0);
if (!rb) {
printf("mmap failed\n");
exit;
}
sched_setscheduler(0, SCHED_RR, &s);
error = 0;
#if 1
if (pthread_create(&rx, NULL, read_thread, (void *) t)) {
printf("Failed to create rx thread\n");
exit(-1);
}
sleep(1);
#endif
if (pthread_create(&tx, NULL, write_thread, (void *) t)) {
printf("Failed to create tx thread\n");
exit(-1);
}
// while (!error)
sleep(1000000000);
printf("Done sleeping\n");
}
|