summaryrefslogtreecommitdiff
path: root/cesar
diff options
context:
space:
mode:
authorlaranjeiro2009-09-28 07:52:54 +0000
committerlaranjeiro2009-09-28 07:52:54 +0000
commitb0bbbca2f60a99b08c9b9327296ae40d5ad87f5f (patch)
treeeb88e287a066820adecc11cd2c587b94983dce2e /cesar
parent748daabbcdfdba4b89a37c9a738d1a27f8bc4ed0 (diff)
*ce/rx/stub:
* Removed the activation of the sound. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@5778 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar')
-rw-r--r--cesar/ce/rx/stub/src/rx.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/cesar/ce/rx/stub/src/rx.c b/cesar/ce/rx/stub/src/rx.c
index 3a60b69eed..0dd33a5d94 100644
--- a/cesar/ce/rx/stub/src/rx.c
+++ b/cesar/ce/rx/stub/src/rx.c
@@ -43,22 +43,6 @@ ce_rx_init (mac_store_t *mac_store, sar_t *sar, pbproc_t *pbproc,
{
sar_init_measure_context (sar, NULL);
sar_init_measurement_cb (sar, ce_measurement);
- /* Ask the PBProc to give us the channel data. */
- /* Create channel data configuration for the whole NOISE NRJ with the
- * division. */
- uint i;
- static phy_chandata_conf_t conf[CE_RX_MEASURE_CONF_SIZE];
- for (i = 0; i < CE_RX_MEASURE_CONF_SIZE; i++)
- {
- conf[i].type = PHY_CHANDATA_TYPE_NRJ;
- conf[i].size = BLK_SIZE / 4;
- conf[i].address = conf[i].size * i;
- conf[i].div = 1; // XXX
- conf[i].last = 0;
- }
- conf[CE_RX_MEASURE_CONF_SIZE - 1].last = 1;
- /* Send it to the PBProc. */
- pbproc_set_chandata_conf (pbproc, conf, CE_RX_MEASURE_CONF_SIZE);
return &ce_rx;
}