From 3c7bc19c4a9550bfc56d0e0a7aa71042a5ebf27e Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 31 Aug 2022 07:58:50 +0000 Subject: [PATCH] Update main documentation --- main/footer.js | 4 ++-- main/group__BiquadCascadeDF2T.html | 4 +++- version.js | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/main/footer.js b/main/footer.js index 4616731a..d56fca93 100644 --- a/main/footer.js +++ b/main/footer.js @@ -1,7 +1,7 @@ function writeHeader() { - document.write('Version 1.11.1-dev12'); + document.write('Version 1.11.1-dev13'); }; function writeFooter() { - document.write('Generated on Tue Aug 30 2022 11:49:01 for CMSIS-DSP 1.11.1-dev12+g305b12c. Copyright © 2022 Arm Limited (or its affiliates). All rights reserved.'); + document.write('Generated on Wed Aug 31 2022 07:58:26 for CMSIS-DSP 1.11.1-dev13+gcbf9e73. Copyright © 2022 Arm Limited (or its affiliates). All rights reserved.'); }; diff --git a/main/group__BiquadCascadeDF2T.html b/main/group__BiquadCascadeDF2T.html index 4105e05f..ab97cffe 100644 --- a/main/group__BiquadCascadeDF2T.html +++ b/main/group__BiquadCascadeDF2T.html @@ -190,10 +190,12 @@ Single transposed Direct Form II Biquad
  • Zeros out the values in the state buffer. To do this manually without calling the init function, assign the follow subfields of the instance structure: numStages, pCoeffs, pState. Also set all of the values in pState to zero.
  • -
    Use of the initialization function is optional. 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
    +
    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;
    +
    Neon version
    For Neon version, the function arm_biquad_cascade_df2T_compute_coefs_x must be used in addition to arm_biquad_cascade_df2T_init_x.
    +

    See the documentation of arm_biquad_cascade_df2T_init_x for more details.

    Function Documentation

    ◆ arm_biquad_cascade_df2T_compute_coefs_f32()

    diff --git a/version.js b/version.js index ddcd9ab4..8dd7310b 100644 --- a/version.js +++ b/version.js @@ -1,6 +1,6 @@ //--- list of versions --- const versions = { - "main": "1.11.1-dev12", + "main": "1.11.1-dev13", "latest": "1.11.0", "v1.10.1": "1.10.1" }