* <!-- description --> * @brief Outputs a string and an 8bit hex to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 8bit hex value to output */
| 54 | * @param val the 8bit hex value to output |
| 55 | */ |
| 56 | static inline void |
| 57 | bfdebug_x8(char const *const str, uint8_t const val) NOEXCEPT |
| 58 | { |
| 59 | printf("[BAREFLANK DEBUG] %s: 0x%" PRIx32 "\n", str, (uint32_t)val); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected