bladeRF-wiphy DSSS receive problem

Having issues with the site, hardware, source code, or any other issues?
Post Reply
sangkun
Posts: 2
Joined: Mon Jul 31, 2023 8:33 pm

bladeRF-wiphy DSSS receive problem

Post 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.
robert.ghilduta
Posts: 156
Joined: Thu Feb 28, 2013 11:14 pm

Re: bladeRF-wiphy DSSS receive problem

Post by robert.ghilduta »

Which lines did you add that code to? Curious what the reason was so we can better debug this as well.
sangkun
Posts: 2
Joined: Mon Jul 31, 2023 8:33 pm

Re: bladeRF-wiphy DSSS receive problem

Post by sangkun »

Thank for reply.
Add "if ..." on line 155 and "end if" on line 269.
Post Reply