bladeRF-wiphy DSSS receive problem
Posted: Mon Jul 31, 2023 9:09 pm
I am testing wifi frame reception using xA9.
During the DSSS reception test, I noticed something strange.
After executing the 'bladeRF-linux-mac80211' command, DSSS packets are received normally, but after a few seconds to a few minutes, no more DSSS packets are received.
I figured out that there was something wrong with wlan_dsss_rx_framer.vhd.
after adding following code
comb : process( clock )
begin
if( falling_edge(clock) ) then --
for i in 0 to 7 loop
I was able to solve the problem, but I don't know if this is the right solution.
During the DSSS reception test, I noticed something strange.
After executing the 'bladeRF-linux-mac80211' command, DSSS packets are received normally, but after a few seconds to a few minutes, no more DSSS packets are received.
I figured out that there was something wrong with wlan_dsss_rx_framer.vhd.
after adding following code
comb : process( clock )
begin
if( falling_edge(clock) ) then --
for i in 0 to 7 loop
I was able to solve the problem, but I don't know if this is the right solution.