Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C# 中的 sdr 客户端应用程序中,我无法正确地将频率(10087000)转换为十六进制并将其传递给套接字。
我正在使用 cloudIQ 设备,需要帮助来使用套接字设置频率和其他参数。
假设频率在 Int32
public String FrequencyToHexadecimal(Int32 frequency) { Int32 networkOrder = IPAddress.HostToNetworkOrder(frequency); Byte[] bytes = BitConverter.GetBytes(networkOrder); return BitConverter.ToString(bytes).Replace("-",""); }
结果将是网络字节顺序的十六进制字符串。