Page 1 of 1

bladeRF-wiphy DSSS receive problem

Posted: Mon Jul 31, 2023 9:09 pm
by sangkun
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.

Re: bladeRF-wiphy DSSS receive problem

Posted: Wed Aug 16, 2023 4:27 am
by robert.ghilduta
Which lines did you add that code to? Curious what the reason was so we can better debug this as well.

Re: bladeRF-wiphy DSSS receive problem

Posted: Fri Aug 18, 2023 1:00 am
by sangkun
Thank for reply.
Add "if ..." on line 155 and "end if" on line 269.