STLlib.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /**
  2. ******************************************************************************
  3. * @file STLlib.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date May-2012
  7. * @brief This file references all header files of the STM32F30x
  8. * Self Test Library.
  9. ******************************************************************************
  10. * @copyright
  11. *
  12. * <h2><center>&copy; COPYRIGHT 2012 STMicroelectronics</center></h2>
  13. *
  14. * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
  15. * You may not use this file except in compliance with the License.
  16. * You may obtain a copy of the License at:
  17. *
  18. * http://www.st.com/software_license_agreement_liberty_v2
  19. *
  20. * Unless required by applicable law or agreed to in writing, software
  21. * distributed under the License is distributed on an "AS IS" BASIS,
  22. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  23. * See the License for the specific language governing permissions and
  24. * limitations under the License.
  25. */
  26. /* Define to prevent recursive inclusion -------------------------------------*/
  27. #ifndef __STL_LIB_H
  28. #define __STL_LIB_H
  29. /* Includes ------------------------------------------------------------------*/
  30. /* All user customizable parameters */
  31. #include "STLparam.h"
  32. /* Examples of Self Test library demo routines use */
  33. #include "STLstartup.h"
  34. #include "STLmain.h"
  35. /* Cortex-M4 CPU test */
  36. #include "STLcpu.h"
  37. #include "STLregister.h"
  38. /* Clock frequency test */
  39. #include "STLclockstart.h"
  40. #include "STLclockrun.h"
  41. /* Invariable memory test */
  42. #include "STLcrc16.h"
  43. #include "STLcrc32.h"
  44. #include "STLcrc32Run.h"
  45. /* Variable memory test */
  46. #include "STLfullRamMc.h"
  47. #include "STLtranspRamMc.h"
  48. #include "STLtranspRamMx.h"
  49. /* Exported types ------------------------------------------------------------*/
  50. /* Exported constants --------------------------------------------------------*/
  51. /* Exported macro ------------------------------------------------------------*/
  52. /* Exported functions ------------------------------------------------------- */
  53. void FailSafePOR(void);
  54. #endif /* __STL_LIB_H */
  55. /******************* (C) COPYRIGHT STMicroelectronics *****END OF FILE****/