summaryrefslogtreecommitdiff
path: root/cesar/hal/phy/src
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/hal/phy/src')
-rw-r--r--cesar/hal/phy/src/rx.c2
-rw-r--r--cesar/hal/phy/src/tx.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/cesar/hal/phy/src/rx.c b/cesar/hal/phy/src/rx.c
index 3a308a9e9a..5c202a5251 100644
--- a/cesar/hal/phy/src/rx.c
+++ b/cesar/hal/phy/src/rx.c
@@ -70,7 +70,7 @@ phy_rx_prepare (phy_t *ctx, bool short_ppdu, phy_mod_t mod,
{
PHY_DSPSS_RX_PARAM = BF_FILL (PHY_DSPSS_RX_PARAM,
(FC_MODE, ctx->rx_fc_mode),
- (SHORT_PPDU, 1))
+ (LONG_PPDU, 1))
| PHY_DSPSS_RX_PARAM__DEFAULT;
}
else
diff --git a/cesar/hal/phy/src/tx.c b/cesar/hal/phy/src/tx.c
index 2121875c06..be1d999f2a 100644
--- a/cesar/hal/phy/src/tx.c
+++ b/cesar/hal/phy/src/tx.c
@@ -50,7 +50,7 @@ phy_tx_param (phy_t *ctx, phy_fc_mode_t fc_mode, bool short_ppdu,
PHY_DSPSS_TX_PARAM =
BF_FILL (PHY_DSPSS_TX_PARAM,
(FC_MODE, fc_mode),
- (SHORT_PPDU, 1))
+ (LONG_PPDU, 0))
| PHY_DSPSS_TX_PARAM__DEFAULT;
gil = PHY_GIL_567;
}
@@ -62,7 +62,7 @@ phy_tx_param (phy_t *ctx, phy_fc_mode_t fc_mode, bool short_ppdu,
(PB_RATE, fecrate),
(PB_MOD, mod),
(FC_MODE, fc_mode),
- (SHORT_PPDU, 0),
+ (LONG_PPDU, 1),
(TMBI, tonemap_index))
| PHY_DSPSS_TX_PARAM__DEFAULT;
}