STM32F429i-Discovery: Need to add pin disambiguation due to changes to pinmap header files

This commit is contained in:
Gregory Nutt 2015-11-01 17:40:30 -06:00
parent 8b9cbc05f6
commit c8ee1c2061
2 changed files with 9 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* configs/stm32f429i-disco/include/board.h
* include/arch/board/board.h
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Copyright (C) 2012, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@ -230,6 +230,12 @@
#define GPIO_SPI4_MOSI GPIO_SPI4_MOSI_1
#define GPIO_SPI4_SCK GPIO_SPI4_SCK_1
/* FSMC - SDRAM */
#define GPIO_FSMC_SDCKE1 GPIO_FSMC_SDCKE1_1
#define GPIO_FSMC_SDNE1 GPIO_FSMC_SDNE1_1
#define GPIO_FSMC_SDNWE GPIO_FSMC_SDNWE_1
/* Timer Inputs/Outputs (see the README.txt file for options) */
#define GPIO_TIM2_CH1IN GPIO_TIM2_CH1IN_2

View File

@ -43,8 +43,6 @@
#include <assert.h>
#include <debug.h>
#include <arch/board/board.h>
#include "chip.h"
#include "up_arch.h"
@ -53,6 +51,8 @@
#include "stm32.h"
#include "stm32f429i-disco.h"
#include <arch/board/board.h>
/************************************************************************************
* Pre-processor Definitions
************************************************************************************/