Porównaj commity

...

2 Commity

Autor SHA1 Wiadomość Data
proto17 4d83bd6267
Update README.md
Fixed list of frequencies that DroneID appears on
2022-09-05 16:56:00 -04:00
proto17 9e2bd4fe55
Removed unnecessary seek into the ZC sym for CFO
It was pointed out that the additional 6 sample seek wasn't necessary.  Tested with a HackRF and DJI Mini 2 to validate.
2022-09-05 12:23:18 -04:00
2 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -72,13 +72,16 @@ This is known, and a deframer will be added at a later date
# Known Values
## Frequencies
Look in 2.4 GHz for the Drone ID frames. Might be best to go into the DJI app and tell the downlink to use 5.8 GHz. This will keep the downlink (and probably uplink) out of 2.4 GHz. Drone ID will not move from 2.4 GHz
Look in 2.4/5.8 GHz for the Drone ID frames
Some frequencies I have noted thus far:
- 2.4595 GHz
- 2.4445 GHz
- 2.4295 GHz
- 2.4145 GHz
- 2.3995 GHz
- 5.7565 GHz
- 5.7765 GHz
- 5.7965 GHz
There might be others, but that's just what I've seen

Wyświetl plik

@ -193,7 +193,8 @@ for burst_idx=1:size(bursts, 1)
% Get the expected starting index of the symbol to be used for CFO estimation
zc_start = long_cp_len + (fft_size * 3) + (short_cp_len * 3);
zc_start = zc_start + 6;
% Extract out the full OFDM symbol (cyclic prefix included)
cfo_est_symbol = burst(zc_start - short_cp_len:zc_start + fft_size - 1);
% Get the cyclic prefix, and then the copy of the cyclic prefix that exists at the end of the OFDM symbol
@ -336,4 +337,4 @@ for idx=1:size(bursts, 1)
frame = frames{idx};
fprintf('FRAME: %s', frame);
end
end