[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 14/15: digital: fix for issue #663.
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 14/15: digital: fix for issue #663. |
Date: |
Thu, 10 Apr 2014 19:38:19 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch master
in repository gnuradio.
commit 5eb513e19e194dd0b43e4aa737b041a45854528d
Author: Jared Boone <address@hidden>
Date: Thu Apr 10 15:19:55 2014 -0400
digital: fix for issue #663.
Allows the correlate_access_code to use access codes >= 32 bits.
---
gr-digital/lib/correlate_access_code_tag_bb_impl.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gr-digital/lib/correlate_access_code_tag_bb_impl.cc
b/gr-digital/lib/correlate_access_code_tag_bb_impl.cc
index f976676..f6574dd 100644
--- a/gr-digital/lib/correlate_access_code_tag_bb_impl.cc
+++ b/gr-digital/lib/correlate_access_code_tag_bb_impl.cc
@@ -79,7 +79,7 @@ namespace gr {
return false;
// set d_len bottom bits to 1.
- d_mask = (1 << d_len) - 1;
+ d_mask = (1ULL << d_len) - 1;
d_access_code = 0;
for(unsigned i=0; i < d_len; i++){
- [Commit-gnuradio] [gnuradio] 10/15: grc: validate params only on focus-out, (continued)
- [Commit-gnuradio] [gnuradio] 10/15: grc: validate params only on focus-out, git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 11/15: Merge remote-tracking branch 'mmueller/pmt_to_python-py2.6-compat', git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 06/15: Merge branch 'master' of github:gnuradio/gnuradio into pmt_to_python-py2.6-compat, git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 02/15: qtgui: fixing up some minor parameters., git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 09/15: grc: move FileParam to gui module, git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 05/15: renamed and cleaned up a bit, git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 04/15: pmt_to_python: numpy_to_uvector and reverse works, QA added, git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 01/15: set numpy_mappings -> dict, to fix py2.6 incompatibility, git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 07/15: grc: adding param templates, git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 03/15: volk: changes QA code to use volk_malloc and volk_free., git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 14/15: digital: fix for issue #663.,
git <=
- [Commit-gnuradio] [gnuradio] 15/15: digital: updated test_corr_and_sync to give time sink lines default labels., git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 13/15: digital: fix for issue #664., git, 2014/04/10
- [Commit-gnuradio] [gnuradio] 08/15: qtgui: changing line config params to use base_key to make cleaner., git, 2014/04/10