You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

105 regels
2.8 KiB

  1. /**
  2. *
  3. * \file
  4. *
  5. * \brief This module contains NMC1500 BSP APIs declarations.
  6. *
  7. * Copyright (c) 2018 Atmel Corporation. All rights reserved.
  8. *
  9. * \asf_license_start
  10. *
  11. * \page License
  12. *
  13. * Redistribution and use in source and binary forms, with or without
  14. * modification, are permitted provided that the following conditions are met:
  15. *
  16. * 1. Redistributions of source code must retain the above copyright notice,
  17. * this list of conditions and the following disclaimer.
  18. *
  19. * 2. Redistributions in binary form must reproduce the above copyright notice,
  20. * this list of conditions and the following disclaimer in the documentation
  21. * and/or other materials provided with the distribution.
  22. *
  23. * 3. The name of Atmel may not be used to endorse or promote products derived
  24. * from this software without specific prior written permission.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
  27. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  28. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
  29. * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
  30. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  32. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  33. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  34. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  35. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  36. * POSSIBILITY OF SUCH DAMAGE.
  37. *
  38. * \asf_license_stop
  39. *
  40. */
  41. /**@defgroup BSPDefine Defines
  42. * @ingroup nm_bsp
  43. * @{
  44. */
  45. #ifndef _NM_BSP_INTERNAL_H_
  46. #define _NM_BSP_INTERNAL_H_
  47. #ifdef WIN32
  48. #include "nm_bsp_win32.h"
  49. #endif
  50. #ifdef __K20D50M__
  51. #include "nm_bsp_k20d50m.h"
  52. #endif
  53. #ifdef __MSP430FR5739__
  54. #include "bsp_msp430fr5739.h"
  55. #endif
  56. #ifdef _FREESCALE_MCF51CN128_
  57. #include "bsp/include/nm_bsp_mcf51cn128.h"
  58. #endif
  59. #ifdef __MCF964548__
  60. #include "bsp/include/nm_bsp_mc96f4548.h"
  61. #endif
  62. #ifdef __APP_APS3_CORTUS__
  63. #include "nm_bsp_aps3_cortus.h"
  64. #endif
  65. #if (defined __SAMR21G18A__)
  66. #include "bsp/include/nm_bsp_samr21.h"
  67. #endif
  68. #if (defined __SAML21J18A__) || (defined __SAML21J18B__)
  69. #include "bsp/include/nm_bsp_saml21.h"
  70. #endif
  71. #if (defined __SAML22N18A__)
  72. #include "bsp/include/nm_bsp_saml22.h"
  73. #endif
  74. #if (defined __SAM4S16C__) || (defined __SAM4SD32C__)
  75. #include "bsp/include/nm_bsp_sam4s.h"
  76. #endif
  77. #if (defined __SAME70Q21__) || (defined __SAMV71Q21__)
  78. #include "bsp/include/nm_bsp_same70.h"
  79. #endif
  80. #ifdef CORTUS_APP
  81. #include "crt_iface.h"
  82. #endif
  83. #ifdef NRF51
  84. #include "nm_bsp_nrf51822.h"
  85. #endif
  86. #ifdef _ARDUINO_UNO_
  87. #include "bsp/include/nm_bsp_arduino_uno.h"
  88. #endif
  89. #endif //_NM_BSP_INTERNAL_H_