From 4977430ef31fb52994fed42b9cb180930ed943d0 Mon Sep 17 00:00:00 2001 From: Sylvain Miermont Date: Tue, 22 Oct 2013 18:23:52 +0200 Subject: Beta 8 - API: lgw_receive now return info on RX frequency and RF path for each packet (no need to keep track of RF/IF settings) - Unified some portion of the code with the 470 MHz variant of the HAL (use SX1255 radios instead of SX1257) - Improved AGC and ARB firmwares - Adding -Wall -Wextra for compilation, fixing all the new warnings for cleaner code - Fixed bugs in handling of FSK datarate - test_loragw_hal now dumps the content of all Lora registers after configuration in reg_dump.log --- libloragw/src/loragw_reg.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libloragw/src/loragw_reg.c') diff --git a/libloragw/src/loragw_reg.c b/libloragw/src/loragw_reg.c index fea9784..68bba55 100644 --- a/libloragw/src/loragw_reg.c +++ b/libloragw/src/loragw_reg.c @@ -479,7 +479,6 @@ int lgw_disconnect(void) { /* soft-reset function */ int lgw_soft_reset(void) { - int32_t read_value; /* check if SPI is initialised */ if ((lgw_spi_target == NULL) || (lgw_regpage < 0)) { DEBUG_MSG("ERROR: GATEWAY UNCONNECTED\n"); @@ -610,7 +609,7 @@ int lgw_reg_r(uint16_t register_id, int32_t *reg_value) { int spi_stat = LGW_SPI_SUCCESS; struct lgw_reg_s r; uint8_t bufu[4] = "\x00\x00\x00\x00"; - int8_t *bufs = bufu; + int8_t *bufs = (int8_t *)bufu; int i, size_byte; uint32_t u = 0; -- cgit v1.2.3