summaryrefslogtreecommitdiff
path: root/cesar/hal/phy/src/tx.c
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/tx.c
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/tx.c')
-rw-r--r--cesar/hal/phy/src/tx.c4
1 files changed, 2 insertions, 2 deletions
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;
}