diff options
author | Philip Balister <philip@opensdr.com> | 2010-08-19 21:24:51 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-08-19 21:24:51 +0000 |
commit | 10f6e1aeec082c6b5ef0485e232266921a3adbc7 (patch) | |
tree | 627e5f6391588b349bc14c47bfb10b1cf6c3f0ad /firmware/microblaze/lib/dbsm.c | |
parent | 38722979512f0f6d57db9fd5e314b94cad1f188e (diff) | |
parent | b84f2da152eb65afe89240941bd02d67b3582eae (diff) | |
download | uhd-10f6e1aeec082c6b5ef0485e232266921a3adbc7.tar.gz uhd-10f6e1aeec082c6b5ef0485e232266921a3adbc7.tar.bz2 uhd-10f6e1aeec082c6b5ef0485e232266921a3adbc7.zip |
Merge branch 'master' of ettus.sourcerepo.com:ettus/uhdpriv into usrp_e
Conflicts:
host/examples/CMakeLists.txt
Diffstat (limited to 'firmware/microblaze/lib/dbsm.c')
-rw-r--r-- | firmware/microblaze/lib/dbsm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/microblaze/lib/dbsm.c b/firmware/microblaze/lib/dbsm.c index d495860fd..cee343eaa 100644 --- a/firmware/microblaze/lib/dbsm.c +++ b/firmware/microblaze/lib/dbsm.c @@ -160,12 +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_process_helper(sm, sm->buf0); //forward errors + 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_process_helper(sm, sm->buf0 ^ 1); //forward errors + dbsm_error_helper(sm, sm->buf0 ^ 1); + //dbsm_process_helper(sm, sm->buf0 ^ 1); //forward errors } if (status & BPS_DONE(sm->buf0)) |