summaryrefslogtreecommitdiff
path: root/cesar/hal/phy/src
diff options
context:
space:
mode:
authorschodet2008-07-04 16:35:51 +0000
committerschodet2008-07-04 16:35:51 +0000
commit06b5b8349d571b45a91692720fbb4a43e55f4c20 (patch)
tree59da1d388fd92bdf7876084e9ce6be735a1e8012 /cesar/hal/phy/src
parent089ca95b659f035dbfdceeeb978a19c9870dfca4 (diff)
* hal/phy:
- DL_type is 1 for long PPDU, specifications do not match hardware. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@2557 017c9cb6-072f-447c-8318-d5b54f68fe89
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;
}