diff --git a/main/footer.js b/main/footer.js index 159444a9..ce4cc755 100644 --- a/main/footer.js +++ b/main/footer.js @@ -1,7 +1,7 @@ function writeHeader() { - document.write('Version 1.14.1-dev3'); + document.write('Version 1.14.1-dev4'); }; function writeFooter() { - document.write('Generated on Thu Sep 29 2022 06:23:46 for CMSIS-DSP 1.14.1-dev3+g3d5fb83. Copyright © 2022 Arm Limited (or its affiliates). All rights reserved.'); + document.write('Generated on Thu Sep 29 2022 06:35:41 for CMSIS-DSP 1.14.1-dev4+g8ed2ef7. Copyright © 2022 Arm Limited (or its affiliates). All rights reserved.'); }; diff --git a/main/group__BiquadCascadeDF2T.html b/main/group__BiquadCascadeDF2T.html index f41be4ae..f0d42038 100644 --- a/main/group__BiquadCascadeDF2T.html +++ b/main/group__BiquadCascadeDF2T.html @@ -190,12 +190,7 @@ Single transposed Direct Form II Biquad
Use of the initialization function is optional except for the vectorized versions (Helium and Neon). - However, if the initialization function is used, then the instance structure cannot be placed into a const data section. - To place an instance structure into a const data section, the instance structure must be manually initialized. - Set the values in the state buffer to zeros before static initialization. - For example, to statically initialize the instance structure use -
+
arm_biquad_cascade_df2T_instance_f64 S1 = {numStages, pState, pCoeffs};
arm_biquad_cascade_df2T_instance_f32 S1 = {numStages, pState, pCoeffs};
where numStages is the number of Biquad stages in the filter; pState is the address of the state buffer. pCoeffs is the address of the coefficient buffer;