mbed-os/libraries/mbed/targets/hal
Adam Green 692e666ced Silence signed/unsigned comparison warnings in GCC.
i2c_frequency() compares a uint32_t ref variable to the int hz
function parameter passed in by the caller.  I forced this to be an
uint32_t comparison.

i2c_slave_write() declared i and count variables to be of type uint32_t
but used them as int type throughout the code (in comparisons and
returns) so I switched them to be of signed int type.

spi_frequency() contains a change similar to that made in
i2c_frequency().
2013-08-13 01:47:20 -07:00
..
TARGET_Freescale Silence signed/unsigned comparison warnings in GCC. 2013-08-13 01:47:20 -07:00
TARGET_NXP Cast to matching enumeration type instead of uint32_t 2013-08-13 01:47:19 -07:00
TARGET_STM/TARGET_STM32F4XX Add the vendor name as a proper target label 2013-07-03 17:14:43 +01:00