Skip to content

Commit

Permalink
Merge pull request #671 from danielhstahl/patch-1
Browse files Browse the repository at this point in the history
Fix range
  • Loading branch information
mrene authored Oct 27, 2024
2 parents 326af55 + 53187b7 commit f994eb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devtools/src/codegen/flexhtx/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub(crate) fn input(input: usize) -> Input {
enable: format!("BM_DGain_{}_status", 3 + output),
gain: Some(format!("BM_DGain_{}", 3 + output)),
}),*/
routing: (0..7usize)
routing: (0..8usize)
.map(|output| Gate {
enable: format!("BM_Mixer_{}_{}_status", input + 1, output + 1),
gain: Some(format!("BM_Mixer_{}_{}", input + 1, output + 1)),
Expand Down Expand Up @@ -99,8 +99,8 @@ pub fn device() -> Device {
"Usb".into(),
"Hdmi".into(),
],
inputs: (0..7).map(input).collect(),
outputs: (0..7).map(output).collect(),
inputs: (0..8).map(input).collect(),
outputs: (0..8).map(output).collect(),
fir_max_taps: 0,
internal_sampling_rate: 48000,
..Default::default()
Expand Down

0 comments on commit f994eb1

Please # to comment.