-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
common.c
227 lines (215 loc) · 6.66 KB
/
common.c
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
* Copyright (c) 2019-2024, Dmitry (DiSlord) [email protected]
* Based on TAKAHASHI Tomohiro (TTRFTECH) [email protected]
* All rights reserved.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* The software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#include <stdint.h>
#include <stdbool.h>
#include "hal.h"
// Use size optimization (UI not need fast speed, better have smallest size)
#pragma GCC optimize ("Os")
// Use macro, std isdigit more big
#define _isdigit(c) (c >= '0' && c <= '9')
// Rewrite universal standart str to value functions to more compact
//
// Convert string to int32
int32_t my_atoi(const char *p) {
int32_t value = 0;
uint32_t c;
bool neg = false;
if (*p == '-') {neg = true; p++;}
if (*p == '+') p++;
while ((c = *p++ - '0') < 10)
value = value * 10 + c;
return neg ? -value : value;
}
// Convert string to uint32
// 0x - for hex radix
// 0o - for oct radix
// 0b - for bin radix
// default dec radix
uint32_t my_atoui(const char *p) {
uint32_t value = 0, radix = 10, c;
if (*p == '+') p++;
if (*p == '0') {
switch (p[1]) {
case 'x': radix = 16; break;
case 'o': radix = 8; break;
case 'b': radix = 2; break;
default: goto calculate;
}
p+=2;
}
calculate:
while (1) {
c = *p++ - '0';
// c = to_upper(*p) - 'A' + 10
if (c >= 'A' - '0') c = (c&(~0x20)) - ('A' - '0') + 10;
if (c >= radix) return value;
value = value * radix + c;
}
}
float my_atof(const char *p) {
int neg = false;
if (*p == '-')
neg = true;
if (*p == '-' || *p == '+')
p++;
float x = my_atoi(p);
while (_isdigit((int)*p))
p++;
if (*p == '.' || *p == ',') {
float d = 1.0f;
p++;
while (_isdigit((int)*p)) {
d *= 1e-1f;
x += d * (*p - '0');
p++;
}
}
if (*p) {
int exp = 0;
if (*p == 'e' || *p == 'E') exp = my_atoi(&p[1]);
else if (*p == 'G') exp = 9; // Giga
else if (*p == 'M') exp = 6; // Mega
else if (*p == 'k') exp = 3; // kilo
else if (*p == 'm') exp = -3; // milli
else if (*p == 'u') exp = -6; // micro
else if (*p == 'n') exp = -9; // nano
else if (*p == 'p') exp =-12; // pico
if (exp > 0) do {x*= 1e+1f;} while (--exp);
if (exp < 0) do {x*= 1e-1f;} while (++exp);
}
return neg ? -x : x;
}
static char to_lower(char c) {return (c >='A' && c <= 'Z') ? c - 'A' + 'a' : c;}
bool strcmpi(const char *t1, const char *t2) {
int i = 0;
while (1) {
char ch1 = to_lower(t1[i]), ch2 = to_lower(t2[i]);
if (ch1 != ch2) return false;
if (ch1 == 0) return true;
i++;
}
}
//
// Function used for search substring v in list
// Example need search parameter "center" in "start|stop|center|span|cw" getStringIndex return 2
// If not found return -1
// Used for easy parse command arguments
int get_str_index(const char *v, const char *list) {
int i = 0;
while (1) {
const char *p = v;
while (1) {
char c = *list;
if (c == '|') c = 0;
if (c == *p++) {
// Found, return index
if (c == 0) return i;
list++; // Compare next symbol
continue;
}
break; // Not equal, break
}
// Set new substring ptr
while (1) {
// End of string, not found
if (*list == 0) return -1;
if (*list++ == '|') break;
}
i++;
}
return -1;
}
/*
* Search first symbols (s2) entry in string (s1)
*/
static inline char* _strpbrk(char *s1, const char *s2) {
do {
const char *s = s2;
while(*s) if (*s++ == *s1) return s1;
} while(*++s1);
return s1;
}
/*
* Split line by arguments, return arguments count
*/
int parse_line(char *line, char* args[], int max_cnt) {
char *lp = line, c;
const char *brk;
uint16_t nargs = 0;
while ((c = *lp) != 0) { // While not end
if (c != ' ' && c != '\t') { // Skipping white space and tabs.
if (c == '"') {lp++; brk = "\""; } // string end is next quote or end
else { brk = " \t";} // string end is tab or space or end
if (nargs < max_cnt) args[nargs] = lp; // Put pointer in args buffer (if possible)
nargs++; // Substring count
lp = _strpbrk(lp, brk); // search end
if (*lp == 0) break; // Stop, end of input string
*lp = 0; // Set zero at the end of substring
}
lp++;
}
return nargs;
}
/*
* Swap byte order in uint16_t buffer
*/
void swap_bytes(uint16_t *buf, int size) {
for (int i = 0; i < size; i++)
buf[i] = __REVSH(buf[i]); // swap byte order (example 0x10FF to 0xFF10)
}
/*
* RLE packbits compression algorithm
*/
int packbits(char *source, char *dest, int size) {
int i = 0, rle, l, pk = 0, sz = 0;
while ((l = size - i) > 0) {
if (l > 128) l = 128; // Limit search RLE block size to 128
char c = source[i++]; // Get next byte and write to block
for (rle = 0; c == source[i + rle] && --l; rle++); // Calculate this byte RLE sequence size = rle + 1
if (sz && rle < 2) rle = 0; // Ignore (rle + 1) < 3 sequence on run non RLE input
else if (sz == 0 || rle > 0) sz = pk++; // Reset state or RLE sequence found -> start new block
dest[pk++] = c; // Write char to block
if (rle > 0) {i+= rle; dest[sz] = -rle;} // Write RLE sequence size and go to new block
else if ((dest[sz] = pk - sz - 2) < 127) // Continue write non RLE data while 1 + (non_rle + 1) < 127
continue;
sz = 0; // Block complete
}
return pk;
}
/*
* Delay 8 core tick function
*/
void _delay_8t(uint32_t cycles) {
if(cycles < 1) return;
__asm (
"1: \n"
" subs %[cyc], %[cyc], #1 \n" // 1 cycle
" nop \n" // 1 cycle
" nop \n" // 1 cycle
" nop \n" // 1 cycle
" nop \n" // 1 cycle
" nop \n" // 1 cycle
" bne 1b \n" // 2 if taken, 1 otherwise
: [cyc] "+l" (cycles)
: // no inputs
: // No memory
);
}