io.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /**
  2. * \file
  3. *
  4. * \brief Arch file for SAM0.
  5. *
  6. * This file defines common SAM0 series.
  7. *
  8. * Copyright (C) 2012-2016 Atmel Corporation. All rights reserved.
  9. *
  10. * \asf_license_start
  11. *
  12. * \page License
  13. *
  14. * Redistribution and use in source and binary forms, with or without
  15. * modification, are permitted provided that the following conditions are met:
  16. *
  17. * 1. Redistributions of source code must retain the above copyright notice,
  18. * this list of conditions and the following disclaimer.
  19. *
  20. * 2. Redistributions in binary form must reproduce the above copyright notice,
  21. * this list of conditions and the following disclaimer in the documentation
  22. * and/or other materials provided with the distribution.
  23. *
  24. * 3. The name of Atmel may not be used to endorse or promote products derived
  25. * from this software without specific prior written permission.
  26. *
  27. * 4. This software may only be redistributed and used in connection with an
  28. * Atmel microcontroller product.
  29. *
  30. * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
  31. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  32. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
  33. * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
  34. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  39. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGE.
  41. *
  42. * \asf_license_stop
  43. *
  44. */
  45. /*
  46. * Support and FAQ: visit <a href="http://www.atmel.com/design-support/">Atmel Support</a>
  47. */
  48. #ifndef _SAM_IO_
  49. #define _SAM_IO_
  50. #include <stddef.h>
  51. #include <stdint.h>
  52. #include <stdbool.h>
  53. /* SAM D20 family */
  54. #if (SAMD20)
  55. # include "samd20.h"
  56. #endif
  57. #if (SAMD21)
  58. # include "samd21.h"
  59. #endif
  60. #if (SAMR21)
  61. # include "samr21.h"
  62. #endif
  63. #if (SAMD09)
  64. # include "samd09.h"
  65. #endif
  66. #if (SAMD10)
  67. # include "samd10.h"
  68. #endif
  69. #if (SAMD11)
  70. # include "samd11.h"
  71. #endif
  72. #if (SAML21)
  73. # include "saml21.h"
  74. #endif
  75. #if (SAMR30)
  76. # include "samr30.h"
  77. #endif
  78. #if (SAML22)
  79. # include "saml22.h"
  80. #endif
  81. #if (SAMDA1)
  82. # include "samda1.h"
  83. #endif
  84. #if (SAMC20)
  85. # include "samc20.h"
  86. #endif
  87. #if (SAMC21)
  88. # include "samc21.h"
  89. #endif
  90. #if (SAMHA1)
  91. # include "samha1.h"
  92. #endif
  93. #if (SAMB11)
  94. # include "samb11.h"
  95. #endif
  96. #endif /* _SAM_IO_ */