Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passthrough updates #97

Open
wants to merge 22 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
660dd91
Updated simple_gain and flanger, created passthrough
fe-wickham Jan 20, 2021
cea8ef3
Update the flanger model to use the sample based technique
dack-fe Jan 20, 2021
f6b5dd9
Updated and validated bitcrusher model
fe-wickham Jan 21, 2021
610031b
Updated the Noise Suppresion Model
dack-fe Jan 22, 2021
1200a75
Noise suppression updates (#72)
dack-fe Jan 25, 2021
faa9afc
Add updated fft and fft_filter bank models from openMHA branch (#73)
fe-wickham Jan 25, 2021
0bc1762
Updated sound effects models to use references that are then used in …
fe-wickham Jan 26, 2021
446eb27
Merge branch 'updateNValidate' of github.com:fpga-open-speech-tools/s…
fe-wickham Jan 26, 2021
2e01e6f
Merge branch 'dev' into updateNValidate
dack-fe Jan 26, 2021
514ace5
Echo Verification Script and Minor Updates (#77)
fe-tdavis Jan 26, 2021
9e12a26
Added missing reference models for the sound effects
fe-wickham Jan 26, 2021
5e3fb37
Merge branch 'updateNValidate' of github.com:fpga-open-speech-tools/s…
fe-wickham Jan 26, 2021
1f7c990
Simulink Model Removal (#76)
dack-fe Jan 26, 2021
5ee98ef
Removed extra files, changed name of model
fe-tdavis Jan 27, 2021
98e6491
Updated the name of the model
fe-tdavis Jan 27, 2021
904db7a
Updated data type for the decay, changed names from feedback to decay
fe-tdavis Jan 27, 2021
54f358f
Simple Hearing Aid (#75)
dack-fe Jan 27, 2021
4b1169b
Updated color scheme of the block diagram
fe-tdavis Jan 27, 2021
413e470
Merge branch 'updateNValidate' of https://github.com/fpga-open-speech…
fe-tdavis Jan 27, 2021
dbbd259
Updated plotting for Avalon outputs
fe-tdavis Jan 27, 2021
f4bd844
Added very brief readme
fe-tdavis Jan 27, 2021
8d1ccf8
Merge branch 'dev' into passthrough_updates
fe-tdavis Oct 18, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
*.slxc
slprj
hdlprj
**/hdlsrc
gm_*.slx
*.autosave
*.asv
*.bak
config/path.json
config/path.json
*.mexw64
**/autogen_quartus.log
2 changes: 0 additions & 2 deletions Simulink_models.prj

This file was deleted.

6 changes: 5 additions & 1 deletion autogen/configureModel.m
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@
nRegs = numel(device.registers);
regs = cell(nRegs);
for idx=1:nRegs
reg = device.registers(idx);
if isa(device.registers, 'struct')
reg = device.registers(idx);
else
reg = device.registers{idx};
end
tempReg.name = reg.name;
tempReg.value = reg.defaultValue;

Expand Down
2 changes: 1 addition & 1 deletion autogen/initCallback.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


[modelPath,modelAbbreviation,~] = fileparts(which(bdroot));
if contains(bdroot, "gm_")
if contains(bdroot, "gm_") || (isfield(mp, 'generation_active') && mp.generation_active)
return
end
mp.modelPath = char(modelPath);
Expand Down
Loading