AppNodes.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* ----------------------------------------------------------------------
  2. * Project: CMSIS DSP Library
  3. * Title: AppNodes.h
  4. * Description: Application nodes for Example 3
  5. *
  6. * Target Processor: Cortex-M and Cortex-A cores
  7. * --------------------------------------------------------------------
  8. *
  9. * Copyright (C) 2021-2023 ARM Limited or its affiliates. All rights reserved.
  10. *
  11. * SPDX-License-Identifier: Apache-2.0
  12. *
  13. * Licensed under the Apache License, Version 2.0 (the License); you may
  14. * not use this file except in compliance with the License.
  15. * You may obtain a copy of the License at
  16. *
  17. * www.apache.org/licenses/LICENSE-2.0
  18. *
  19. * Unless required by applicable law or agreed to in writing, software
  20. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  21. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  22. * See the License for the specific language governing permissions and
  23. * limitations under the License.
  24. */
  25. #ifndef _APPNODES_H_
  26. #define _APPNODES_H_
  27. #include <iostream>
  28. #include <fstream>
  29. #include <string>
  30. using namespace std;
  31. #include <cstdio>
  32. #include "arm_math.h"
  33. #include "cg_status.h"
  34. #include "host/FileSink.h"
  35. #include "host/FileSource.h"
  36. #include "CFFT.h"
  37. #include "ICFFT.h"
  38. #include "ToComplex.h"
  39. #include "ToReal.h"
  40. #include "SlidingBuffer.h"
  41. #include "OverlapAndAdd.h"
  42. #endif