<!-- description --> @brief Outputs a character to the serial port. <!-- inputs/outputs --> @param ring the debug ring to output to @param c the character to output
| 42 | /// @param c the character to output |
| 43 | /// |
| 44 | constexpr void |
| 45 | debug_ring_write(loader::debug_ring_t const &ring, bsl::char_type const c) noexcept |
| 46 | { |
| 47 | bsl::discard(ring); |
| 48 | bsl::discard(c); |
| 49 | } |
| 50 | |
| 51 | /// <!-- description --> |
| 52 | /// @brief Outputs a string to the serial port. |
nothing calls this directly
no outgoing calls
no test coverage detected