* <!-- description --> * @brief Outputs a string and an 16bit hex to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 16bit hex value to output */
| 68 | * @param val the 16bit hex value to output |
| 69 | */ |
| 70 | static inline void |
| 71 | bfdebug_x16(char const *const str, uint16_t const val) NOEXCEPT |
| 72 | { |
| 73 | printf("[BAREFLANK DEBUG] %s: 0x%" PRIx32 "\n", str, (uint32_t)val); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected