Skip to content

Commit

Permalink
Fix varlen blocks wrong args type for gnuradio-3.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeniy Titorenko authored and daniestevez committed Apr 15, 2024
1 parent 036034a commit e252153
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions grc/satellites_varlen_packet_framer.block.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ parameters:
default: '12'
- id: endianness
label: Endianness
dtype: int
default: int(gr.GR_MSB_FIRST)
options: [int(gr.GR_MSB_FIRST), int(gr.GR_LSB_FIRST)]
dtype: raw
default: gr.GR_MSB_FIRST
options: [gr.GR_MSB_FIRST, gr.GR_LSB_FIRST]
option_labels: [MSB, LSB]
- id: use_golay
label: Golay Encoding
Expand Down
6 changes: 3 additions & 3 deletions grc/satellites_varlen_packet_tagger.block.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ parameters:
default: 255*8
- id: endianness
label: Endianness
dtype: int
default: int(gr.GR_MSB_FIRST)
options: [int(gr.GR_MSB_FIRST), int(gr.GR_LSB_FIRST)]
dtype: raw
default: gr.GR_MSB_FIRST
options: [gr.GR_MSB_FIRST, gr.GR_LSB_FIRST]
option_labels: [MSB, LSB]
- id: use_golay
label: Golay Decoding
Expand Down

0 comments on commit e252153

Please sign in to comment.