diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-10-07 04:38:28 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-10-25 01:56:23 -0400 |
commit | 7ad38b8fbfeeaeddc3d89ba47f8de0ccbbcb1b67 (patch) | |
tree | 24a3e8bb731cd95384daf9ee926587dec82921be /drivers/net/ieee802154 | |
parent | 850f43acb1869edf2a8b355330819412066d6fa2 (diff) |
at86rf230: correct at86rf2xx lifs timings
Symbol rate is 16 us. Lifs is 40 symbols. 16 * 40 = 640 us.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/net/ieee802154')
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 2a25324d3a64..b26135fd0a2d 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c | |||
@@ -1267,7 +1267,7 @@ static struct at86rf2xx_chip_data at86rf233_data = { | |||
1267 | .t_frame = 4096, | 1267 | .t_frame = 4096, |
1268 | .t_p_ack = 545, | 1268 | .t_p_ack = 545, |
1269 | .t_sifs = 192, | 1269 | .t_sifs = 192, |
1270 | .t_lifs = 480, | 1270 | .t_lifs = 640, |
1271 | .t_tx_timeout = 2000, | 1271 | .t_tx_timeout = 2000, |
1272 | .rssi_base_val = -91, | 1272 | .rssi_base_val = -91, |
1273 | .set_channel = at86rf23x_set_channel, | 1273 | .set_channel = at86rf23x_set_channel, |
@@ -1283,7 +1283,7 @@ static struct at86rf2xx_chip_data at86rf231_data = { | |||
1283 | .t_frame = 4096, | 1283 | .t_frame = 4096, |
1284 | .t_p_ack = 545, | 1284 | .t_p_ack = 545, |
1285 | .t_sifs = 192, | 1285 | .t_sifs = 192, |
1286 | .t_lifs = 480, | 1286 | .t_lifs = 640, |
1287 | .t_tx_timeout = 2000, | 1287 | .t_tx_timeout = 2000, |
1288 | .rssi_base_val = -91, | 1288 | .rssi_base_val = -91, |
1289 | .set_channel = at86rf23x_set_channel, | 1289 | .set_channel = at86rf23x_set_channel, |
@@ -1299,7 +1299,7 @@ static struct at86rf2xx_chip_data at86rf212_data = { | |||
1299 | .t_frame = 4096, | 1299 | .t_frame = 4096, |
1300 | .t_p_ack = 545, | 1300 | .t_p_ack = 545, |
1301 | .t_sifs = 192, | 1301 | .t_sifs = 192, |
1302 | .t_lifs = 480, | 1302 | .t_lifs = 640, |
1303 | .t_tx_timeout = 2000, | 1303 | .t_tx_timeout = 2000, |
1304 | .rssi_base_val = -100, | 1304 | .rssi_base_val = -100, |
1305 | .set_channel = at86rf212_set_channel, | 1305 | .set_channel = at86rf212_set_channel, |