roberttidey / LightwaveRF

Arduino Libraries for LightwaveRF 433MHz rx and tx
57 stars 16 forks source link

LwRx.h - Removed the unsigned keyword from uint16_t *stats parameter in lwrx_getstats function prototype #11

Closed canidorichard closed 7 years ago

canidorichard commented 7 years ago

LwRx.h - Removed the unsigned keyword from uint16_t *stats parameter in lwrx_getstats function prototype.

The data type uint16_t is already unsigned and so does not require the unsigned keyword and in fact its presence causes compilation failure in Arduino IDE 1.8

roberttidey commented 7 years ago

Thanks.