summaryrefslogtreecommitdiff
path: root/cesar/hal/phy/maximus
diff options
context:
space:
mode:
authorburet2009-04-06 15:31:56 +0000
committerburet2009-04-06 15:31:56 +0000
commitda38af89f648505b68a6ee57be12c8b9bdb777c7 (patch)
treef23c5dbdaee561ae14e05bbf8d962a1079afc431 /cesar/hal/phy/maximus
parent0afb4103e4a2ee7e2d091d8f6e16589555a23ccc (diff)
[maximus hal phy] fixes #328
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@4416 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/hal/phy/maximus')
-rw-r--r--cesar/hal/phy/maximus/src/maximus_phy_ctrl_cb.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/cesar/hal/phy/maximus/src/maximus_phy_ctrl_cb.c b/cesar/hal/phy/maximus/src/maximus_phy_ctrl_cb.c
index d57487d2bf..3891f81192 100644
--- a/cesar/hal/phy/maximus/src/maximus_phy_ctrl_cb.c
+++ b/cesar/hal/phy/maximus/src/maximus_phy_ctrl_cb.c
@@ -206,7 +206,13 @@ maximus_phy_tx_frame_cb (void *data)
ctx->control.pre_detection = false;
// increment TX ID
- ctx->control.current_tx_param.tx_id++;
+ ctx->control.current_tx_param.tx_id++;
+ /* BEGIN ticket #328 */
+ if (0 == ctx->control.current_tx_param.tx_id)
+ {
+ ctx->control.current_tx_param.tx_id++;
+ }
+ /* END ticket #328 */
// reset next TX frame netclock message id
ctx->control.next_tx_param.tx_frame_netclock_id = 0;