2009-09-21 15:53:48 +02:00
|
|
|
/************************************************************************************
|
|
|
|
* arch/arm/src/stm32/chip.h
|
|
|
|
*
|
2011-02-27 16:42:07 +01:00
|
|
|
* Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
|
2011-11-20 15:01:44 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2009-09-21 15:53:48 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ARCH_ARM_SRC_STM32_CHIP_H
|
|
|
|
#define __ARCH_ARM_SRC_STM32_CHIP_H
|
|
|
|
|
2011-03-27 21:53:36 +02:00
|
|
|
/************************************************************************************
|
|
|
|
* Included Files
|
|
|
|
************************************************************************************/
|
|
|
|
|
2009-09-21 15:53:48 +02:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2011-11-22 01:10:56 +01:00
|
|
|
/* Include the chip capabilities file */
|
|
|
|
|
|
|
|
#include <arch/stm32/chip.h>
|
|
|
|
|
|
|
|
/* Include the chip pin configuration file */
|
|
|
|
|
|
|
|
#if defined(CONFIG_STM32_STM32F10XX)
|
|
|
|
# if defined(CONFIG_ARCH_CHIP_STM32F103ZET6)
|
|
|
|
# include "chip/stm32f103ze_pinmap.h"
|
|
|
|
# elif defined(CONFIG_ARCH_CHIP_STM32F103RET6)
|
|
|
|
# include "chip/stm32f103re_pinmap.h"
|
2011-12-17 21:07:22 +01:00
|
|
|
# elif defined(CONFIG_ARCH_CHIP_STM32F103VCT6)
|
|
|
|
# include "chip/stm32f103vc_pinmap.h"
|
2011-11-22 01:10:56 +01:00
|
|
|
# elif defined(CONFIG_ARCH_CHIP_STM32F107VC)
|
|
|
|
# include "chip/stm32f107vc_pinmap.h"
|
|
|
|
# else
|
|
|
|
# error "Unsupported STM32F10XXX chip"
|
|
|
|
# endif
|
|
|
|
#elif defined(CONFIG_STM32_STM32F40XX)
|
2011-11-17 21:37:08 +01:00
|
|
|
# include "chip/stm32f40xxx_pinmap.h"
|
2009-09-21 15:53:48 +02:00
|
|
|
#else
|
2009-09-25 19:26:47 +02:00
|
|
|
# error "Unsupported STM32 chip"
|
2009-09-21 15:53:48 +02:00
|
|
|
#endif
|
|
|
|
|
2011-11-22 01:10:56 +01:00
|
|
|
/* Include only the mchip emory map. */
|
2009-09-21 15:53:48 +02:00
|
|
|
|
2011-03-27 21:53:36 +02:00
|
|
|
#include "chip/stm32_memorymap.h"
|
2009-09-21 15:53:48 +02:00
|
|
|
|
2011-11-22 01:10:56 +01:00
|
|
|
/************************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
************************************************************************************/
|
|
|
|
|
2009-09-21 15:53:48 +02:00
|
|
|
#endif /* __ARCH_ARM_SRC_STM32_CHIP_H */
|
2011-03-27 21:53:36 +02:00
|
|
|
|