* <!-- description --> * @brief Writes a string to the serial. Note that you must initialize * the serial before you can use it. * * <!-- inputs/outputs --> * @param str the string to write to the serial. */
| 36 | * @param str the string to write to the serial. |
| 37 | */ |
| 38 | void |
| 39 | serial_write(char const *const str) NOEXCEPT |
| 40 | { |
| 41 | uint64_t mut_i; |
| 42 | |
| 43 | for (mut_i = ((uint64_t)0); '\0' != str[mut_i]; ++mut_i) { |
| 44 | serial_write_c(str[mut_i]); |
| 45 | } |
| 46 | } |
no test coverage detected