| 188 | |
| 189 | |
| 190 | int Output_putstr( char* str ) |
| 191 | { |
| 192 | uint32_t count = 0; |
| 193 | |
| 194 | // Count characters until NULL character, then send the amount counted |
| 195 | while ( str[count] != '\0' ) |
| 196 | count++; |
| 197 | |
| 198 | return uart_serial_write( str, count ); |
| 199 | } |
| 200 | |
| 201 | |
| 202 | uint16_t lenStr( char* in ) |
no test coverage detected
searching dependent graphs…