Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

100 wiersze
2.4 KiB

  1. /**
  2. *
  3. * \file
  4. *
  5. * \brief This module contains WINC3400 BSP APIs declarations.
  6. *
  7. * Copyright (c) 2016-2018 Microchip Technology Inc. and its subsidiaries.
  8. *
  9. * \asf_license_start
  10. *
  11. * \page License
  12. *
  13. * Subject to your compliance with these terms, you may use Microchip
  14. * software and any derivatives exclusively with Microchip products.
  15. * It is your responsibility to comply with third party license terms applicable
  16. * to your use of third party software (including open source software) that
  17. * may accompany Microchip software.
  18. *
  19. * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES,
  20. * WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE,
  21. * INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY,
  22. * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE
  23. * LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL
  24. * LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE
  25. * SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE
  26. * POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT
  27. * ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY
  28. * RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
  29. * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
  30. *
  31. * \asf_license_stop
  32. *
  33. */
  34. /**@defgroup BSPDefine Defines
  35. * @ingroup nm_bsp
  36. * @{
  37. */
  38. #ifndef _NM_BSP_INTERNAL_H_
  39. #define _NM_BSP_INTERNAL_H_
  40. #ifdef WIN32
  41. #include "nm_bsp_win32.h"
  42. #endif
  43. #ifdef __K20D50M__
  44. #include "nm_bsp_k20d50m.h"
  45. #endif
  46. #ifdef __MSP430FR5739__
  47. #include "bsp_msp430fr5739.h"
  48. #endif
  49. #ifdef _FREESCALE_MCF51CN128_
  50. #include "bsp/include/nm_bsp_mcf51cn128.h"
  51. #endif
  52. #ifdef __MCF964548__
  53. #include "bsp/include/nm_bsp_mc96f4548.h"
  54. #endif
  55. #ifdef __APP_APS3_CORTUS__
  56. #include "nm_bsp_aps3_cortus.h"
  57. #endif
  58. #if (defined __SAMD21J18A__) || (defined __SAMD21G18A__)
  59. #include "bsp/include/nm_bsp_samd21.h"
  60. #endif
  61. #if (defined __SAM4S16C__) || (defined __SAM4SD32C__)
  62. #include "bsp/include/nm_bsp_sam4s.h"
  63. #endif
  64. #ifdef __SAMG55J19__
  65. #include "bsp/include/nm_bsp_samg55.h"
  66. #endif
  67. #ifdef __SAMG53N19__
  68. #include "bsp/include/nm_bsp_samg53.h"
  69. #endif
  70. #if (defined __SAME70Q21__) || (defined __SAME70Q21B__)
  71. #include "bsp/include/nm_bsp_same70.h"
  72. #endif
  73. #ifdef CORTUS_APP
  74. #include "crt_iface.h"
  75. #endif
  76. #ifdef NRF51
  77. #include "nm_bsp_nrf51822.h"
  78. #endif
  79. #ifdef _ARDUINO_UNO_
  80. #include "bsp/include/nm_bsp_arduino_uno.h"
  81. #endif
  82. #endif //_NM_BSP_INTERNAL_H_