Problem:
Sometime in the last 3 weeks, probably when Alex brought his latest changes from Hanford to the 40m and did an SVN update, the code which generates the names of the filter .adl files links for the overall matrix view broke.
Fix:
I modified FE code gen to use $basename instead of the base name after the top name transform (this changes _ to - after the first 3 letters
@@ -3520,11 +3522,11 @@
my $tn = top_name_transform($basename);
my $basename1 = $usite . ":" . $tn . "_";
- my $filtername1 = $usite . $tn;
+ my $filtername1 = $usite . $basename;
Still having problems:
The filter modules built with the matrix of filter modules run (offests/gains work), but will not load filter coefficients/filter names. All the other filter modules outside the matrix seem to load fine. At this point, doing a rebuild of any of the front end machines may cause the A2L filter banks to be unloadable.
|