Skip to content

Commit

Permalink
Fixed TX MIMO
Browse files Browse the repository at this point in the history
  • Loading branch information
gracid committed Jan 28, 2020
1 parent 0a1f587 commit bf6bcf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules)
# Set the version information here
set(VERSION_MAJOR 3)
set(VERSION_API 0)
set(VERSION_ABI 0)
set(VERSION_ABI 1)
set(VERSION_PATCH 0)

cmake_policy(SET CMP0011 NEW)
Expand Down
2 changes: 1 addition & 1 deletion lib/sink_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ inline gr::io_signature::sptr sink_impl::args_to_io_signature(int channel_number
if (channel_number < 2) {
return gr::io_signature::make(1, 1, sizeof(gr_complex));
} else if (channel_number == 2) {
return gr::io_signature::make(1, 1, sizeof(gr_complex));
return gr::io_signature::make(2, 2, sizeof(gr_complex));
} else {
std::cout << "ERROR: sink_impl::args_to_io_signature(): channel_number must be "
"0,1 or 2."
Expand Down

0 comments on commit bf6bcf4

Please sign in to comment.