> #### Updates

The fine timestamping feature has been fully validated with this release.

> #### Changes

* HAL: Adjusted the freq_offset field of received packets, to take into account
the channel IF resolution error.
* HAL: Refined the fine timestamp offset compared to Gateway v2, by taking into
account the frequency offset of the received packet.
* HAL: Fixed the preamble length for FSK downlinks
* MCU: Removed the binary compiled in debug mode.
* util_spectral_scan: actually use the nb_scan input argument which was ignored.
This commit is contained in:
Michael Coracin 2020-12-18 11:11:19 +01:00
commit 05416800cd
7 changed files with 49 additions and 11 deletions

View file

@ -285,7 +285,7 @@ int main(int argc, char **argv)
/* Launch Spectral Scan on each channels */
for (j = 0; j < nb_channels; j++) {
x = lgw_spectral_scan_start(freq_hz, 2000);
x = lgw_spectral_scan_start(freq_hz, nb_scan);
if (x != 0) {
printf("ERROR: spectral scan start failed\n");
continue;