Arduino_STM32/STM32F4/variants/discovery_f407/discovery_f4.h

95 lines
3.7 KiB
C

/******************************************************************************
* The MIT License
*
* Copyright (c) 2011 LeafLabs, LLC.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*****************************************************************************/
/**
* @file aeroquad32.h
* @author Marti Bolivar <mbolivar@leaflabs.com>
* @brief Private include file for Maple Native in boards.h
*
* See maple.h for more information on these definitions.
*/
#ifndef _BOARD_DISCOVERY_F4_H_
#define _BOARD_DISCOVERY_F4_H_
#define Port2Pin(port, bit) ((port-'A')*16+bit)
#define CYCLES_PER_MICROSECOND 168
#undef STM32_PCLK1
#undef STM32_PCLK2
#define STM32_PCLK1 (CYCLES_PER_MICROSECOND*1000000/4)
#define STM32_PCLK2 (CYCLES_PER_MICROSECOND*1000000/2)
#define SYSTICK_RELOAD_VAL (CYCLES_PER_MICROSECOND*1000-1)
#define BOARD_LED_PIN Port2Pin('D', 12)
#define BOARD_BUTTON_PIN Port2Pin('A', 0)
#define BOARD_NR_USARTS 5
#define BOARD_USART1_TX_PIN Port2Pin('A', 9)
#define BOARD_USART1_RX_PIN Port2Pin('A',10)
#define BOARD_USART2_TX_PIN Port2Pin('A', 2)
#define BOARD_USART2_RX_PIN Port2Pin('A', 3)
#define BOARD_USART3_TX_PIN Port2Pin('D', 8)
#define BOARD_USART3_RX_PIN Port2Pin('D', 9)
#define BOARD_UART4_TX_PIN Port2Pin('C',10)
#define BOARD_UART4_RX_PIN Port2Pin('C',11)
#define BOARD_UART5_TX_PIN Port2Pin('C',12)
#define BOARD_UART5_RX_PIN Port2Pin('D', 2)
#define BOARD_NR_SPI 3
#define BOARD_SPI1_NSS_PIN Port2Pin('A', 4)
#define BOARD_SPI1_MOSI_PIN Port2Pin('A', 7)
#define BOARD_SPI1_MISO_PIN Port2Pin('A', 6)
#define BOARD_SPI1_SCK_PIN Port2Pin('A', 5)
#define BOARD_SPI2_NSS_PIN Port2Pin('B',12)
#define BOARD_SPI2_MOSI_PIN Port2Pin('B',15)
#define BOARD_SPI2_MISO_PIN Port2Pin('B',14)
#define BOARD_SPI2_SCK_PIN Port2Pin('B',13)
#define BOARD_SPI3_NSS_PIN Port2Pin('A',15)
#define BOARD_SPI3_MOSI_PIN Port2Pin('B', 5)
#define BOARD_SPI3_MISO_PIN Port2Pin('B', 4)
#define BOARD_SPI3_SCK_PIN Port2Pin('B', 3)
#define BOARD_SPI3B_NSS_PIN Port2Pin('B', 8)
#define BOARD_SPI3B_MOSI_PIN Port2Pin('C',12)
#define BOARD_SPI3B_MISO_PIN Port2Pin('C',11)
#define BOARD_SPI3B_SCK_PIN Port2Pin('C',10)
#define BOARD_NR_GPIO_PINS 80
#define BOARD_NR_PWM_PINS 22
#define BOARD_NR_ADC_PINS 16
#define BOARD_NR_USED_PINS 43 // ala42 not set yet
#define BOARD_JTMS_SWDIO_PIN Port2Pin('A',13)
#define BOARD_JTCK_SWCLK_PIN Port2Pin('A',14)
#define BOARD_JTDI_PIN Port2Pin('A',15)
#define BOARD_JTDO_PIN Port2Pin('B', 3)
#define BOARD_NJTRST_PIN Port2Pin('B', 4)
#endif