* <!-- description --> * @brief Outputs a string and an 8bit dec to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 8bit dec value to output */
| 110 | * @param val the 8bit dec value to output |
| 111 | */ |
| 112 | static inline void |
| 113 | bfdebug_d8(char const *const str, uint8_t const val) NOEXCEPT |
| 114 | { |
| 115 | printf("[BAREFLANK DEBUG] %s: %" PRId32 "\n", str, (uint32_t)val); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected