-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathat_string.cpp
453 lines (396 loc) · 13.1 KB
/
at_string.cpp
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/****************************************************************************
** ROBOTICA@POLITO PROJECT
*****************************************************************************
** AT_STRING
*****************************************************************************
** Author: Orso Eric
** Creation Date:
** Last Edit Date:
** Revision: 2019-11-07
** Version: 2.0
****************************************************************************/
/****************************************************************************
** HYSTORY VERSION
*****************************************************************************
** R1 V0.1ALPHA
** >Tested the u8_to_str for all values
** >Tested the s8_to_str, it's basicaly a wrapper of u8_to_str that handles the signs
** >tester u16_to_str for all values (I used sprintf and compared output strings)
** >tester s16_to_str for all values (I used sprintf and compared output strings)
** 2019-11-07
** >Adding 32bit support
** >Refactor code to doxygen compatible
** >Remove dependency on custom types
****************************************************************************/
/****************************************************************************
** INCLUDE
****************************************************************************/
#include "stdint.h"
#include "at_string.h"
/****************************************************************************
** FUNCTIONS
****************************************************************************/
/***************************************************************************/
//! function
//! u8_to_str
/***************************************************************************/
//! @param num | number to be converted
//! @param str | return string provied by the caller
//! @return uint8_t | number of digits written in the string
//! @brief convert an unsigned 8b into a string
//! @details
//! Constants
//! max uint8_t : 256
//! max uint8_t base : 100
//! max uint8_t digits : 3
/***************************************************************************/
uint8_t u8_to_str( uint8_t num, uint8_t *str )
{
//----------------------------------------------------------------
// VARS
//----------------------------------------------------------------
//decimal base
uint8_t base[] =
{
100,
10,
1
};
//temp var
uint8_t t, u8t;
//----------------------------------------------------------------
// BODY
//----------------------------------------------------------------
//index to the string
uint8_t index = 0;
//flag used to blank non meaningful zeros
bool flag = true;
//----------------------------------------------------------------
// BODY
//----------------------------------------------------------------
//For all bases
for (t = 0;t < MAX_DIGIT8; t++)
{
//If the base is bigger or equal than the number (division is meaningful)
if (base[t] <= num)
{
//Divide number by base, get the digit
u8t = num/base[t];
//Write the digit
str[ index ] = '0' +u8t;
//Update the number
num = num - base[t] * u8t;
//I have found a meaningful digit
flag = false;
//Jump to the next digit
index++;
}
//If: The base is smaller then the number, and I have yet to find a non zero digit, and I'm not to the last digit
else if ( (flag == true) && (t != (MAX_DIGIT8 -1)) )
{
//do nothing
}
//If: I have a meaningful zero
else
{
//It's a zero
str[ index ] = '0';
//Jump to the next digit
index++;
}
} //End for: all bases
//----------------------------------------------------------------
// RETURN
//----------------------------------------------------------------
//Append the terminator
str[ index ] = '\0';
return index;
} //End function: u8_to_str
/***************************************************************************/
//! function
//! s8_to_str
/***************************************************************************/
//! @param num | number to be converted
//! @param str | return string provied by the caller
//! @return uint8_t | number of digits written in the string
//! @brief Convert an int16_t to string
//! @details
//! This function is a thin wrapper of u16_to_str that apply sign correction and detection
/***************************************************************************/
uint8_t s8_to_str( int8_t num, uint8_t *str )
{
//----------------------------------------------------------------
// VARS
//----------------------------------------------------------------
//number of character written
uint8_t ret;
//----------------------------------------------------------------
// BODY
//----------------------------------------------------------------
//If: negative
if (num < 0)
{
//Write sign '-'
str[ 0 ] = '-';
//Correct sign
num = -num;
}
//If: zero or positive
else
{
//Write sign '+'
str[ 0 ] = '+';
}
//launch the u8_to_str to the corrected num, but feed the vector shifted by 1 to make room for the sign. save the return value
ret = u8_to_str( num, &str[1] );
//----------------------------------------------------------------
// RETURN
//----------------------------------------------------------------
return (ret +1);
} //End function: s8_to_str
/***************************************************************************/
//! function
//! u16_to_str
/***************************************************************************/
//! @param num | number to be converted
//! @param str | return string provied by the caller
//! @return uint8_t | number of digits written in the string
//! @brief convert an unsigned 16b into a string
//! @details
//! Constants
//! max uint16_t : 65536
//! max uint16_t base : 10000
//! max uint16_t digits : 5
/***************************************************************************/
uint8_t u16_to_str( uint16_t num, uint8_t *str )
{
//----------------------------------------------------------------
// VARS
//----------------------------------------------------------------
//decimal base
uint16_t base[] =
{
10000,
1000,
100,
10,
1
};
//temp var
uint8_t t, u8t;
//----------------------------------------------------------------
// INIT
//----------------------------------------------------------------
//index to the string
uint8_t index = 0;
//flag used to blank non meaningful zeros
bool flag = true;
//----------------------------------------------------------------
// BODY
//----------------------------------------------------------------
//For all bases
for (t = 0;t < MAX_DIGIT16; t++)
{
//If the base is bigger or equal than the number (division is meaningful)
if (base[t] <= num)
{
//Divide number by base, get the digit
u8t = num/base[t];
//Write the digit
str[ index ] = '0' +u8t;
//Update the number
num = num - base[t] * u8t;
//I have found a meaningful digit
flag = false;
//Jump to the next digit
index++;
}
//If: The base is smaller then the number, and I have yet to find a non zero digit, and I'm not to the last digit
else if ( (flag == false) && (t != (MAX_DIGIT16 -1)) )
{
//do nothing
}
//If: I have a meaningful zero
else
{
//It's a zero
str[ index ] = '0';
//Jump to the next digit
index++;
}
} //End for: all bases
//----------------------------------------------------------------
// RETURN
//----------------------------------------------------------------
//Append the terminator
str[ index ] = '\0';
return index;
} //End function: u16_to_str
/***************************************************************************/
//! function
//! s16_to_str
/***************************************************************************/
//! @param num | number to be converted
//! @param str | return string provied by the caller
//! @return uint8_t | number of digits written in the string
//! @brief Convert an int16_t to string
//! @details
//! This function is a thin wrapper of u16_to_str that apply sign correction and detection
/***************************************************************************/
uint8_t s16_to_str( int16_t num, uint8_t *str )
{
//----------------------------------------------------------------
// VARS
//----------------------------------------------------------------
//number of character written
uint8_t ret;
//----------------------------------------------------------------
// BODY
//----------------------------------------------------------------
//If: negative
if (num < 0)
{
//Write sign '-'
str[ 0 ] = '-';
//Correct sign
num = -num;
}
//If: zero or positive
else
{
//Write sign '+'
str[ 0 ] = '+';
}
//launch the u8_to_str to the corrected num, but feed the vector shifted by 1 to make room for the sign. save the return value
ret = u16_to_str( num, &str[1] );
//----------------------------------------------------------------
// RETURN
//----------------------------------------------------------------
return (ret +1);
} //End function: s16_to_str
/***************************************************************************/
//! function
//! u32_to_str
/***************************************************************************/
//! @param num | number to be converted
//! @param str | return string provied by the caller
//! @return uint8_t | number of digits written in the string
//! @brief convert an unsigned 32b into a string
//! @details
//! Constants
//! max uint32_t : 4294967295
//! max uint32_t base : 1000000000
//! max uint32_t digits : 9
/***************************************************************************/
uint8_t u32_to_str( uint32_t num, uint8_t *str )
{
//----------------------------------------------------------------
// VARS
//----------------------------------------------------------------
//decimal base
uint32_t base[] =
{
1000000000,
100000000,
10000000,
1000000,
100000,
10000,
1000,
100,
10,
1
};
//temp var
uint8_t t, u8t;
//----------------------------------------------------------------
// INIT
//----------------------------------------------------------------
//index to the return string
uint8_t index = 0;
//flag used to blank non meaningful zeros
bool flag = true;
//----------------------------------------------------------------
// BODY
//----------------------------------------------------------------
//For all bases
for (t = 0;t < MAX_DIGIT32; t++)
{
//If the base is bigger or equal than the number (division is meaningful)
if (base[t] <= num)
{
//Divide number by base, get the digit
u8t = num/base[t];
//Write the digit
str[ index ] = '0' +u8t;
//Update the number
num = num - base[t] *u8t;
//I have found a meaningful digit
flag = false;
//Jump to the next digit
index++;
}
//If: The base is smaller then the number, and I have yet to find a non zero digit, and I'm not to the last digit
else if ( (flag == true) && (t != (MAX_DIGIT32 -1)) )
{
//do nothing
}
//If: I have a meaningful zero
else
{
//It's a zero
str[ index ] = '0';
//Jump to the next digit
index++;
}
} //End for: all bases
//Append the terminator
str[ index ] = '\0';
//----------------------------------------------------------------
// RETURN
//----------------------------------------------------------------
//Return the length of the string
return index;
} //End function: u32_to_str
/***************************************************************************/
//! function
//! s32_to_str
/***************************************************************************/
//! @param num | number to be converted
//! @param str | return string provied by the caller
//! @return uint8_t | number of digits written in the string
//! @brief Convert an int32_t to string
//! @details
//! This function is a thin wrapper of u32_to_str that apply sign correction and detection
/***************************************************************************/
uint8_t s32_to_str( int32_t num, uint8_t *str )
{
//----------------------------------------------------------------
// VARS
//----------------------------------------------------------------
//number of character written
uint8_t ret;
//----------------------------------------------------------------
// BODY
//----------------------------------------------------------------
//If: negative
if (num < 0)
{
//Write sign '-'
str[ 0 ] = '-';
//Correct sign
num = -num;
}
//If: zero or positive
else
{
//Write sign '+'
str[ 0 ] = '+';
}
//launch the u8_to_str to the corrected num, but feed the vector shifted by 1 to make room for the sign. save the return value
ret = u32_to_str( num, &str[1] );
//----------------------------------------------------------------
// RETURN
//----------------------------------------------------------------
return (ret +1);
} //End function: s32_to_str