* <!-- 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 */
| 155 | * @param val the 8bit dec value to output |
| 156 | */ |
| 157 | static inline void |
| 158 | bfdebug_d8(char const *const str, uint8_t const val) |
| 159 | { |
| 160 | char num[65] = {0}; |
| 161 | bfitoa(((uint64_t)val), num, BASE10); |
| 162 | |
| 163 | serial_write("[BAREFLANK DEBUG] "); |
| 164 | serial_write(str); |
| 165 | serial_write(": "); |
| 166 | serial_write(num); |
| 167 | serial_write("\n"); |
| 168 | |
| 169 | DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_INFO_LEVEL, "[BAREFLANK DEBUG] %s: %s\n", str, num); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * <!-- description --> |
nothing calls this directly
no test coverage detected