]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Debug/print/print.c
Major code cleanup and preparation for PartialMap Macro Module
[kiibohd-controller.git] / Debug / print / print.c
1 /* Copyright (C) 2011-2014 by Jacob Alexander
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 // ----- Includes -----
23
24 // Compiler Includes
25 #include <stdarg.h>
26
27 // Project Includes
28 #include "print.h"
29
30
31
32 // ----- Functions -----
33
34 // Multiple string Output
35 void printstrs( char* first, ... )
36 {
37         // Initialize the variadic function parameter list
38         va_list ap;
39
40         // Get the first parameter
41         va_start( ap, first );
42         char *cur = first;
43
44         // Loop through the variadic list until "\0\0\0" is found
45         while ( !( cur[0] == '\0' && cur[1] == '\0' && cur[2] == '\0' ) )
46         {
47                 // Print out the given string
48                 Output_putstr( cur );
49
50                 // Get the next argument ready
51                 cur = va_arg( ap, char* );
52         }
53
54         va_end( ap ); // Not required, but good practice
55 }
56
57 // Print a constant string
58 void _print( const char* s )
59 {
60 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
61         // Pull string out of flash
62         char c;
63         while ( ( c = pgm_read_byte( s++ ) ) != '\0' )
64         {
65                 Output_putchar( c );
66         }
67 #elif defined(_mk20dx128_) || defined(_mk20dx256_) // ARM
68         Output_putstr( (char*)s );
69 #endif
70 }
71
72
73
74 // Number Printing Functions
75 void printInt8( uint8_t in )
76 {
77         // Max number of characters is 3 + 1 for null
78         char tmpStr[4];
79
80         // Convert number
81         int8ToStr( in, tmpStr );
82
83         // Print number
84         dPrintStr( tmpStr );
85 }
86
87 void printInt16( uint16_t in )
88 {
89         // Max number of characters is 5 + 1 for null
90         char tmpStr[6];
91
92         // Convert number
93         int16ToStr( in, tmpStr );
94
95         // Print number
96         dPrintStr( tmpStr );
97 }
98
99 void printInt32( uint32_t in )
100 {
101         // Max number of characters is 10 + 1 for null
102         char tmpStr[11];
103
104         // Convert number
105         int32ToStr( in, tmpStr );
106
107         // Print number
108         dPrintStr( tmpStr );
109 }
110
111 void printHex_op( uint16_t in, uint8_t op )
112 {
113         // With an op of 1, the max number of characters is 6 + 1 for null
114         // e.g. "0xFFFF\0"
115         // op 2 and 4 require fewer characters (2+1 and 4+1 respectively)
116         char tmpStr[7];
117
118         // Convert number
119         hexToStr_op( in, tmpStr, op );
120
121         // Print number
122         dPrintStr( tmpStr );
123 }
124
125
126
127 // String Functions
128 void int8ToStr( uint8_t in, char* out )
129 {
130         // Position and sign containers
131         uint8_t pos;
132         pos = 0;
133
134         // Evaluate through digits as decimal
135         do
136         {
137                 out[pos++] = in % 10 + '0';
138         }
139         while ( (in /= 10) > 0 );
140
141         // Append null
142         out[pos] = '\0';
143
144         // Reverse the string to the correct order
145         revsStr(out);
146 }
147
148
149 void int16ToStr( uint16_t in, char* out )
150 {
151         // Position and sign containers
152         uint16_t pos;
153         pos = 0;
154
155         // Evaluate through digits as decimal
156         do
157         {
158                 out[pos++] = in % 10 + '0';
159         }
160         while ( (in /= 10) > 0 );
161
162         // Append null
163         out[pos] = '\0';
164
165         // Reverse the string to the correct order
166         revsStr(out);
167 }
168
169
170 void int32ToStr( uint32_t in, char* out )
171 {
172         // Position and sign containers
173         uint32_t pos;
174         pos = 0;
175
176         // Evaluate through digits as decimal
177         do
178         {
179                 out[pos++] = in % 10 + '0';
180         }
181         while ( (in /= 10) > 0 );
182
183         // Append null
184         out[pos] = '\0';
185
186         // Reverse the string to the correct order
187         revsStr(out);
188 }
189
190
191 void hexToStr_op( uint16_t in, char* out, uint8_t op )
192 {
193         // Position container
194         uint16_t pos = 0;
195
196         // Evaluate through digits as hex
197         do
198         {
199                 uint16_t cur = in % 16;
200                 out[pos++] = cur + (( cur < 10 ) ? '0' : 'A' - 10);
201         }
202         while ( (in /= 16) > 0 );
203
204         // Output formatting options
205         switch ( op )
206         {
207         case 1: // Add 0x
208                 out[pos++] = 'x';
209                 out[pos++] = '0';
210                 break;
211         case 2: //  8-bit padding
212         case 4: // 16-bit padding
213                 while ( pos < op )
214                         out[pos++] = '0';
215                 break;
216         }
217
218         // Append null
219         out[pos] = '\0';
220
221         // Reverse the string to the correct order
222         revsStr(out);
223 }
224
225
226 void revsStr( char* in )
227 {
228         // Iterators
229         int i, j;
230
231         // Temp storage
232         char c;
233
234         // Loop through the string, and reverse the order of the characters
235         for ( i = 0, j = lenStr( in ) - 1; i < j; i++, j-- )
236         {
237                 c = in[i];
238                 in[i] = in[j];
239                 in[j] = c;
240         }
241 }
242
243
244 uint16_t lenStr( char* in )
245 {
246         // Iterator
247         char *pos;
248
249         // Loop until null is found
250         for ( pos = in; *pos; pos++ );
251
252         // Return the difference between the pointers of in and pos (which is the string length)
253         return (pos - in);
254 }
255
256
257 int16_t eqStr( char* str1, char* str2 )
258 {
259         // Scan each string for NULLs and whether they are the same
260         while( *str1 != '\0' && *str1++ == *str2++ );
261
262         // If the strings are still identical (i.e. both NULL), then return -1, otherwise current *str1
263         // If *str1 is 0, then str1 ended (and str1 is "like" str2), otherwise strings are different
264         return *--str1 == *--str2 ? -1 : *++str1;
265 }
266
267 int decToInt( char* in )
268 {
269         // Pointers to the LSD (Least Significant Digit) and MSD
270         char* lsd = in;
271         char* msd = in;
272
273         int total = 0;
274         int sign = 1; // Default to positive
275
276         // Scan the string once to determine the length
277         while ( *lsd != '\0' )
278         {
279                 // Check for positive/negative
280                 switch ( *lsd++ )
281                 {
282                 // Fall through is intentional, only do something on negative, ignore the rest
283                 // Update the MSD to remove leading spaces and signs
284                 case '-': sign = -1;
285                 case '+':
286                 case ' ':
287                         msd = lsd;
288                         break;
289                 }
290         }
291
292         // Rescan the string from the LSD to MSD to convert it to a decimal number
293         for ( unsigned int digit = 1; lsd > msd ; digit *= 10 )
294                 total += ( (*--lsd) - '0' ) * digit;
295
296         // Propagate sign and return
297         return total * sign;
298 }
299