U2C_RESULT U2C_SpiGetFreq(
      HANDLE hDevice,
      BYTE* pFrequency
);
The U2C_SpiGetFreq() function obtains SPI bus frequency.
Parameters:
- hDevice
- Handle to the U2C-12 device. 
- pFrequency
- A pointer to byte to be filled with the current SPI bus frequency, where: For convenience following constants were introduced:- 0 corresponds to SPI bus frequency of 200 kHz.
- 1 corresponds to SPI bus frequency of 100 kHz.
- 1+n corresponds to the SPI bus clock period equal to 10 + 2*n uS.
 - U2C_SPI_FREQ_200KHZ - 200 kHz - U2C_SPI_FREQ_100KHZ - 100 kHz - U2C_SPI_FREQ_83KHZ - 83 kHz - U2C_SPI_FREQ_71KHZ - 71 kHz - U2C_SPI_FREQ_62KHZ - 62 kHz - U2C_SPI_FREQ_50KHZ - 50 kHz - U2C_SPI_FREQ_25KHZ - 25 kHz - U2C_SPI_FREQ_10KHZ - 10 kHz - U2C_SPI_FREQ_5KHZ - 5 kHz - U2C_SPI_FREQ_2KHZ - 2 kHz 
Return values:
U2C_SUCCESS
The SPI bus frequency value was successfully retrieved.
U2C_HARDWARE_NOT_FOUND
U2C-12 device referenced by hDevice handle was not found.