训练营PLSR题目
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

104 Zeilen
3.5 KiB

  1. /*
  2. *********************************************************************************************************
  3. * EXAMPLE CODE
  4. *
  5. * (c) Copyright 2013; Micrium, Inc.; Weston, FL
  6. *
  7. * All rights reserved. Protected by international copyright laws.
  8. * Knowledge of the source code may NOT be used to develop a similar product.
  9. * Please help us continue to provide the Embedded community with the finest
  10. * software available. Your honesty is greatly appreciated.
  11. *********************************************************************************************************
  12. */
  13. /*
  14. *********************************************************************************************************
  15. *
  16. * MASTER INCLUDES
  17. *
  18. * IAR Development Kits
  19. * on the
  20. *
  21. * STM32F429II-SK KICKSTART KIT
  22. *
  23. * Filename : includes.h
  24. * Version : V1.00
  25. * Programmer(s) : FT
  26. *********************************************************************************************************
  27. */
  28. #ifndef INCLUDES_MODULES_PRESENT
  29. #define INCLUDES_MODULES_PRESENT
  30. /*
  31. *********************************************************************************************************
  32. * STANDARD LIBRARIES
  33. *********************************************************************************************************
  34. */
  35. #include <stdio.h>
  36. #include <string.h>
  37. #include <ctype.h>
  38. #include <stdlib.h>
  39. #include <stdarg.h>
  40. #include <math.h>
  41. /*
  42. *********************************************************************************************************
  43. * OS
  44. *********************************************************************************************************
  45. */
  46. #include "os.h"
  47. /*
  48. *********************************************************************************************************
  49. * LIBRARIES
  50. *********************************************************************************************************
  51. */
  52. #include <cpu.h>
  53. #include <lib_def.h>
  54. #include <lib_ascii.h>
  55. #include <lib_math.h>
  56. #include <lib_mem.h>
  57. #include <lib_str.h>
  58. /*
  59. *********************************************************************************************************
  60. * APP / BSP
  61. *********************************************************************************************************
  62. */
  63. #include <app_cfg.h>
  64. #include <bsp.h>
  65. /*
  66. *********************************************************************************************************
  67. * PROBE
  68. *********************************************************************************************************
  69. */
  70. /*
  71. *********************************************************************************************************
  72. * SERIAL
  73. *********************************************************************************************************
  74. */
  75. /*
  76. *********************************************************************************************************
  77. * INCLUDES END
  78. *********************************************************************************************************
  79. */
  80. #endif