diff options
author | Philip Balister <philip@opensdr.com> | 2010-07-14 20:36:48 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-07-14 20:36:48 +0000 |
commit | 87428bf6e1c5fcf623595063921277f9827a919a (patch) | |
tree | fbd2855b45ff24bead6342375f87fe00abb20a05 /firmware | |
parent | 9ee1b33bbc170b2e76fbb5b9a075d6b6c7315a7e (diff) | |
parent | 959669e383c75fdcbd11091466516bd5af66cfb5 (diff) | |
download | uhd-87428bf6e1c5fcf623595063921277f9827a919a.tar.gz uhd-87428bf6e1c5fcf623595063921277f9827a919a.tar.bz2 uhd-87428bf6e1c5fcf623595063921277f9827a919a.zip |
Merge branch 'master' of ettus.sourcerepo.com:ettus/uhdpriv into usrp_e
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/microblaze/lib/dbsm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/microblaze/lib/dbsm.c b/firmware/microblaze/lib/dbsm.c index 9d66ec39c..d495860fd 100644 --- a/firmware/microblaze/lib/dbsm.c +++ b/firmware/microblaze/lib/dbsm.c @@ -160,10 +160,12 @@ dbsm_process_status(dbsm_t *sm, uint32_t status) putchar('E'); // Most likely an ethernet Rx error. We just restart the transfer. if (status & (BPS_ERROR(sm->buf0))) - dbsm_error_helper(sm, sm->buf0); + //dbsm_error_helper(sm, sm->buf0); + dbsm_process_helper(sm, sm->buf0); //forward errors if (status & (BPS_ERROR(sm->buf0 ^ 1))) - dbsm_error_helper(sm, sm->buf0 ^ 1); + //dbsm_error_helper(sm, sm->buf0 ^ 1); + dbsm_process_helper(sm, sm->buf0 ^ 1); //forward errors } if (status & BPS_DONE(sm->buf0)) |