Add support for RealtekBridgeController

This commit is contained in:
Jerry Fan
2026-05-29 20:46:22 +08:00
committed by Adam Honse
parent 69de0b13c4
commit 8afad91b33
10 changed files with 1378 additions and 0 deletions

View File

@@ -94,3 +94,10 @@ const std::string StringUtils::remove_null_terminating_chars(std::string input)
return(input);
}
std::string StringUtils::u32int_to_hexString(unsigned int value)
{
char hex_str[20] = {0};
snprintf(hex_str, sizeof(hex_str), "%X", value);
return std::string(hex_str);
}