Previous version which works for my stm32f401 Nucleo board

Fork of X_NUCLEO_IDB0XA1 by ST

Committer:
Wolfgang Betz
Date:
Fri Jul 24 08:55:32 2015 +0200
Revision:
100:76c16a800273
Child:
101:59324bc861b2
Introducing 'x_nucleo_idb0xa1_targets.h' in order to deal with different pins

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Wolfgang Betz 100:76c16a800273 1 /**
Wolfgang Betz 100:76c16a800273 2 ******************************************************************************
Wolfgang Betz 100:76c16a800273 3 * @file x_nucleo_idb0xa1_targets.h
Wolfgang Betz 100:76c16a800273 4 * @author AST / EST
Wolfgang Betz 100:76c16a800273 5 * @version V0.0.1
Wolfgang Betz 100:76c16a800273 6 * @date 24-July-2015
Wolfgang Betz 100:76c16a800273 7 * @brief This header file is intended to manage the differences between
Wolfgang Betz 100:76c16a800273 8 * the different supported base-boards which might mount the
Wolfgang Betz 100:76c16a800273 9 * X_NUCLEO_IDB0XA1 BlueNRG BLE Expansion Board.
Wolfgang Betz 100:76c16a800273 10 ******************************************************************************
Wolfgang Betz 100:76c16a800273 11 * @attention
Wolfgang Betz 100:76c16a800273 12 *
Wolfgang Betz 100:76c16a800273 13 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Wolfgang Betz 100:76c16a800273 14 *
Wolfgang Betz 100:76c16a800273 15 * Redistribution and use in source and binary forms, with or without modification,
Wolfgang Betz 100:76c16a800273 16 * are permitted provided that the following conditions are met:
Wolfgang Betz 100:76c16a800273 17 * 1. Redistributions of source code must retain the above copyright notice,
Wolfgang Betz 100:76c16a800273 18 * this list of conditions and the following disclaimer.
Wolfgang Betz 100:76c16a800273 19 * 2. Redistributions in binary form must reproduce the above copyright notice,
Wolfgang Betz 100:76c16a800273 20 * this list of conditions and the following disclaimer in the documentation
Wolfgang Betz 100:76c16a800273 21 * and/or other materials provided with the distribution.
Wolfgang Betz 100:76c16a800273 22 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Wolfgang Betz 100:76c16a800273 23 * may be used to endorse or promote products derived from this software
Wolfgang Betz 100:76c16a800273 24 * without specific prior written permission.
Wolfgang Betz 100:76c16a800273 25 *
Wolfgang Betz 100:76c16a800273 26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Wolfgang Betz 100:76c16a800273 27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Wolfgang Betz 100:76c16a800273 28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Wolfgang Betz 100:76c16a800273 29 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Wolfgang Betz 100:76c16a800273 30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Wolfgang Betz 100:76c16a800273 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Wolfgang Betz 100:76c16a800273 32 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Wolfgang Betz 100:76c16a800273 33 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Wolfgang Betz 100:76c16a800273 34 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Wolfgang Betz 100:76c16a800273 35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wolfgang Betz 100:76c16a800273 36 *
Wolfgang Betz 100:76c16a800273 37 ******************************************************************************
Wolfgang Betz 100:76c16a800273 38 */
Wolfgang Betz 100:76c16a800273 39
Wolfgang Betz 100:76c16a800273 40 /* Define to prevent from recursive inclusion --------------------------------*/
Wolfgang Betz 100:76c16a800273 41 #ifndef _X_NUCLEO_IDB0XA1_TARGETS_H_
Wolfgang Betz 100:76c16a800273 42 #define _X_NUCLEO_IDB0XA1_TARGETS_H_
Wolfgang Betz 100:76c16a800273 43
Wolfgang Betz 100:76c16a800273 44 /*** SPI ***/
Wolfgang Betz 100:76c16a800273 45 /* Use Arduino I2C Connectors */
Wolfgang Betz 100:76c16a800273 46 #define IDB0XA1_PIN_SPI_MOSI (D11)
Wolfgang Betz 100:76c16a800273 47 #define IDB0XA1_PIN_SPI_MISO (D12)
Wolfgang Betz 100:76c16a800273 48 #define IDB0XA1_PIN_SPI_nCS (A1)
Wolfgang Betz 100:76c16a800273 49 #define IDB0XA1_PIN_SPI_RESET (D7)
Wolfgang Betz 100:76c16a800273 50 #define IDB0XA1_PIN_SPI_IRQ (A0)
Wolfgang Betz 100:76c16a800273 51
Wolfgang Betz 100:76c16a800273 52 /* NOTE: Define beyond macro if you want to compile for a specifically
Wolfgang Betz 100:76c16a800273 53 modified version of the X_NUCLEO_IDB0XA1 expansion board in
Wolfgang Betz 100:76c16a800273 54 which pin 'D13' (rather than the standard pin 'D3') is used
Wolfgang Betz 100:76c16a800273 55 in order to provide the SPI serial clock.
Wolfgang Betz 100:76c16a800273 56 Expansion boards modified in this way allow to be used on almost
Wolfgang Betz 100:76c16a800273 57 any Arduino-compliant base board.
Wolfgang Betz 100:76c16a800273 58 */
Wolfgang Betz 100:76c16a800273 59 #define IDB0XA1_D13_PATH
Wolfgang Betz 100:76c16a800273 60
Wolfgang Betz 100:76c16a800273 61 #if defined(IDB0XA1_D13_PATH)
Wolfgang Betz 100:76c16a800273 62 #define IDB0XA1_PIN_SPI_SCK (D13)
Wolfgang Betz 100:76c16a800273 63 #else // !defined(IDB0XA1_D13_PATH)
Wolfgang Betz 100:76c16a800273 64 #define IDB0XA1_PIN_SPI_SCK (D3)
Wolfgang Betz 100:76c16a800273 65 #endif // !defined(IDB0XA1_D13_PATH)
Wolfgang Betz 100:76c16a800273 66
Wolfgang Betz 100:76c16a800273 67 #endif // _X_NUCLEO_IDB0XA1_TARGETS_H_