board.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* This header file is part of the ATMEL AVR-UC3-SoftwareFramework-1.7.0 Release */
  2. /*This file is prepared for Doxygen automatic documentation generation.*/
  3. /*! \file *********************************************************************
  4. *
  5. * \brief Standard board header file.
  6. *
  7. * This file includes the appropriate board header file according to the
  8. * defined board.
  9. *
  10. * - Compiler: IAR EWAVR32 and GNU GCC for AVR32
  11. * - Supported devices: All AVR32 devices can be used.
  12. * - AppNote:
  13. *
  14. * \author Atmel Corporation: http://www.atmel.com \n
  15. * Support and FAQ: http://support.atmel.no/
  16. *
  17. ******************************************************************************/
  18. /* Copyright (c) 2009 Atmel Corporation. All rights reserved.
  19. *
  20. * Redistribution and use in source and binary forms, with or without
  21. * modification, are permitted provided that the following conditions are met:
  22. *
  23. * 1. Redistributions of source code must retain the above copyright notice, this
  24. * list of conditions and the following disclaimer.
  25. *
  26. * 2. Redistributions in binary form must reproduce the above copyright notice,
  27. * this list of conditions and the following disclaimer in the documentation
  28. * and/or other materials provided with the distribution.
  29. *
  30. * 3. The name of Atmel may not be used to endorse or promote products derived
  31. * from this software without specific prior written permission.
  32. *
  33. * 4. This software may only be redistributed and used in connection with an Atmel
  34. * AVR product.
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
  37. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  38. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
  39. * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
  40. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  41. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  42. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  44. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  45. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
  46. *
  47. */
  48. #ifndef _BOARD_H_
  49. #define _BOARD_H_
  50. #include <avr32/io.h>
  51. /*! \name Base Boards
  52. */
  53. //! @{
  54. #define EVK1100 1 //!< AT32UC3A EVK1100 board.
  55. #define EVK1101 2 //!< AT32UC3B EVK1101 board.
  56. #define UC3C_EK 3 //!< AT32UC3C UC3C_EK board.
  57. #define EVK1104 4 //!< AT32UC3A3 EVK1104 board.
  58. #define EVK1105 5 //!< AT32UC3A EVK1105 board.
  59. #define STK1000 6 //!< AT32AP7000 STK1000 board.
  60. #define NGW100 7 //!< AT32AP7000 NGW100 board.
  61. #define STK600_RCUC3L0 8 //!< STK600 RCUC3L0 board.
  62. #define UC3L_EK 9 //!< AT32UC3L-EK board.
  63. #define USER_BOARD 99 //!< User-reserved board (if any).
  64. //! @}
  65. /*! \name Extension Boards
  66. */
  67. //! @{
  68. #define EXT1102 1 //!< AT32UC3B EXT1102 board.
  69. #define MC300 2 //!< AT32UC3 MC300 board.
  70. #define USER_EXT_BOARD 99 //!< User-reserved extension board (if any).
  71. //! @}
  72. #if BOARD == EVK1100
  73. #include "EVK1100/evk1100.h"
  74. #elif BOARD == EVK1101
  75. #include "EVK1101/evk1101.h"
  76. #elif BOARD == UC3C_EK
  77. #include "UC3C_EK/uc3c_ek.h"
  78. #elif BOARD == EVK1104
  79. #include "EVK1104/evk1104.h"
  80. #elif BOARD == EVK1105
  81. #include "EVK1105/evk1105.h"
  82. #elif BOARD == STK1000
  83. #include "STK1000/stk1000.h"
  84. #elif BOARD == NGW100
  85. #include "NGW100/ngw100.h"
  86. #elif BOARD == STK600_RCUC3L0
  87. #include "STK600/RCUC3L0/stk600_rcuc3l0.h"
  88. #elif BOARD == UC3L_EK
  89. #include "UC3L_EK/uc3l_ek.h"
  90. #elif BOARD == USER_BOARD
  91. // User-reserved area: #include the header file of your board here (if any).
  92. #include "user_board.h"
  93. #else
  94. #error No known AVR32 board defined
  95. #endif
  96. #if (defined EXT_BOARD)
  97. #if EXT_BOARD == EXT1102
  98. #include "EXT1102/ext1102.h"
  99. #elif EXT_BOARD == MC300
  100. #include "MC300/mc300.h"
  101. #elif EXT_BOARD == USER_EXT_BOARD
  102. // User-reserved area: #include the header file of your extension board here
  103. // (if any).
  104. #endif
  105. #endif
  106. #ifndef FRCOSC
  107. #define FRCOSC AVR32_PM_RCOSC_FREQUENCY //!< Default RCOsc frequency.
  108. #endif
  109. #endif // _BOARD_H_