summaryrefslogtreecommitdiff
path: root/cesar/maximus/stationtest/src/test_false_alarm.c
diff options
context:
space:
mode:
authorschodet2009-12-22 16:14:49 +0000
committerschodet2009-12-22 16:14:49 +0000
commit8d292d3436612073c81d45f16d28adc1748049fe (patch)
tree18da4e3af78434e4fffd8c47321172bd417eda2e /cesar/maximus/stationtest/src/test_false_alarm.c
parentb4b326474eb5767b53a78afe4bb2a79e59561df1 (diff)
cesar/hal/phy: phy_{tx_param,rx_prepare}* interface changes, closes #1007
This includes: - replace mod, fecrate and pb_size with a combo parameter ; - remove unused tonemap_index ; - use specialised short_ppdu functions. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@6574 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/maximus/stationtest/src/test_false_alarm.c')
-rw-r--r--cesar/maximus/stationtest/src/test_false_alarm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/cesar/maximus/stationtest/src/test_false_alarm.c b/cesar/maximus/stationtest/src/test_false_alarm.c
index b141853a29..e04e012de0 100644
--- a/cesar/maximus/stationtest/src/test_false_alarm.c
+++ b/cesar/maximus/stationtest/src/test_false_alarm.c
@@ -30,9 +30,8 @@ bool phy_rx_fc_cb (void *user, u32 rx_date, const u32 *fc_av)
// Reset IT
maximus_pending_isrs &= (0 << PHY_HAL_INTERRUPT_PHY);
- phy_rx_prepare(ctx, false, PHY_MOD_MINI_ROBO,
- PHY_FEC_RATE_1_2, PHY_PB_SIZE_136, PHY_GIL_567,
- 0 /* tonemap_index */, 0 /* symbol_nb */);
+ phy_rx_prepare(ctx, PHY_COMBO_PARAMS (PHY_MOD_MINI_ROBO, PHY_FEC_RATE_1_2,
+ PHY_PB_SIZE_136), PHY_GIL_567, 0);
return true;
}