mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
boards: stm32f7: fix Mixed case identifier errors
Fix the Mixed case identifier errors found on stm32f7 family Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
committed by
Xiang Xiao
parent
66d312985c
commit
b8b7144041
@@ -381,7 +381,7 @@
|
|||||||
|
|
||||||
#define GPIO_TP_INT (GPIO_INPUT|GPIO_FLOAT|GPIO_EXTI|GPIO_PORTI|GPIO_PIN13)
|
#define GPIO_TP_INT (GPIO_INPUT|GPIO_FLOAT|GPIO_EXTI|GPIO_PORTI|GPIO_PIN13)
|
||||||
|
|
||||||
#define FT5x06_I2C_ADDRESS (0x70 >> 1)
|
#define FT5X06_I2C_ADDRESS (0x70 >> 1)
|
||||||
|
|
||||||
/* The STM32 F7 connects to a SMSC LAN8742A PHY using these pins:
|
/* The STM32 F7 connects to a SMSC LAN8742A PHY using these pins:
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
* Pre-processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#define FT5x06_FREQUENCY 100000 /* For now, will boost later */
|
#define FT5X06_FREQUENCY 100000 /* For now, will boost later */
|
||||||
|
|
||||||
#ifdef CONFIG_INPUT_FT5X06
|
#ifdef CONFIG_INPUT_FT5X06
|
||||||
#ifndef CONFIG_INPUT
|
#ifndef CONFIG_INPUT
|
||||||
@@ -107,8 +107,8 @@ static void stm32_ft5x06_nreset(FAR const struct ft5x06_config_s *config,
|
|||||||
|
|
||||||
static const struct ft5x06_config_s g_ft5x06_config =
|
static const struct ft5x06_config_s g_ft5x06_config =
|
||||||
{
|
{
|
||||||
.address = FT5x06_I2C_ADDRESS,
|
.address = FT5X06_I2C_ADDRESS,
|
||||||
.frequency = FT5x06_FREQUENCY,
|
.frequency = FT5X06_FREQUENCY,
|
||||||
#ifndef CONFIG_FT5X06_POLLMODE
|
#ifndef CONFIG_FT5X06_POLLMODE
|
||||||
.attach = stm32_ft5x06_attach,
|
.attach = stm32_ft5x06_attach,
|
||||||
.enable = stm32_ft5x06_enable,
|
.enable = stm32_ft5x06_enable,
|
||||||
|
|||||||
Reference in New Issue
Block a user