| /**************************************************************************** |
| * boards/arm/stm32/stm32f411-minimum/src/stm32f411-minimum.h |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. The |
| * ASF licenses this file to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance with the |
| * License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| * License for the specific language governing permissions and limitations |
| * under the License. |
| * |
| ****************************************************************************/ |
| |
| #ifndef __BOARDS_ARM_STM32_STM32F411_MINIMUM_SRC_STM32F411_MINIMUM_H |
| #define __BOARDS_ARM_STM32_STM32F411_MINIMUM_SRC_STM32F411_MINIMUM_H |
| |
| /**************************************************************************** |
| * Included Files |
| ****************************************************************************/ |
| |
| #include <nuttx/config.h> |
| #include <nuttx/compiler.h> |
| #include <arch/chip/chip.h> |
| |
| #include <stdint.h> |
| |
| #ifdef CONFIG_STM32F411MINIMUM_GPIO |
| #include "stm32f411-minimum-gpio.h" |
| #endif |
| |
| /**************************************************************************** |
| * Pre-processor Definitions |
| ****************************************************************************/ |
| |
| /* Configuration ************************************************************/ |
| |
| /* LED. User LED1: the blue LED is a user LED connected to board LED C13 |
| * corresponding to MCU I/O PC13. |
| * |
| * - When the I/O is LOW value, the LED is on. |
| * - When the I/O is HIGH, the LED is off. |
| */ |
| |
| #define GPIO_LED1 \ |
| (GPIO_PORTC | GPIO_PIN13 | GPIO_OUTPUT_SET | GPIO_OUTPUT | GPIO_PULLUP | \ |
| GPIO_SPEED_50MHz) |
| |
| /* Buttons |
| * |
| * B1 USER: the user button is connected to the I/O PA0 of the STM32 |
| * microcontroller. |
| */ |
| |
| #define MIN_IRQBUTTON BUTTON_USER |
| #define MAX_IRQBUTTON BUTTON_EXTERNAL |
| #define NUM_IRQBUTTONS (BUTTON_USER - BUTTON_EXTERNAL + 1) |
| |
| #define GPIO_BTN_USER \ |
| (GPIO_INPUT |GPIO_PULLUP |GPIO_EXTI | GPIO_PORTA | GPIO_PIN0) |
| |
| #define GPIO_BTN_EXTERNAL \ |
| (GPIO_INPUT |GPIO_FLOAT |GPIO_EXTI | GPIO_PORTA | GPIO_PIN1) |
| |
| /* PWM Configuration */ |
| |
| #define STM32F411MINIMUM_PWMTIMER 3 |
| #define STM32F411MINIMUM_PWMCHANNEL 3 |
| |
| /* SPI chip selects */ |
| |
| #define FLASH_SPI1_CS \ |
| (GPIO_PORTA | GPIO_PIN4 | GPIO_OUTPUT_SET | GPIO_OUTPUT | GPIO_FLOAT | \ |
| GPIO_SPEED_50MHz) |
| |
| /* procfs File System */ |
| |
| #ifdef CONFIG_FS_PROCFS |
| # ifdef CONFIG_NSH_PROC_MOUNTPOINT |
| # define STM32_PROCFS_MOUNTPOINT CONFIG_NSH_PROC_MOUNTPOINT |
| # else |
| # define STM32_PROCFS_MOUNTPOINT "/proc" |
| # endif |
| #endif |
| |
| /* HX711 pins */ |
| |
| #ifdef CONFIG_ADC_HX711 |
| # ifdef CONFIG_STM32F411MINIMUM_HX711_CLK_PORTB |
| # define HX711_CLK_PORT GPIO_PORTB |
| # else |
| # define HX711_CLK_PORT GPIO_PORTA |
| # endif |
| |
| # ifdef CONFIG_STM32F411MINIMUM_HX711_DATA_PORTB |
| # define HX711_DATA_PORT GPIO_PORTB |
| # else |
| # define HX711_DATA_PORT GPIO_PORTA |
| # endif |
| |
| #define HX711_CLK_PIN (GPIO_OUTPUT|GPIO_PUSHPULL|GPIO_OUTPUT_SET|\ |
| GPIO_SPEED_2MHz|GPIO_PULLUP|\ |
| HX711_CLK_PORT|CONFIG_STM32F411MINIMUM_HX711_CLK_PIN) |
| #define HX711_DATA_PIN (GPIO_INPUT|GPIO_SPEED_2MHz|GPIO_PULLUP|GPIO_EXTI|\ |
| HX711_DATA_PORT|CONFIG_STM32F411MINIMUM_HX711_DATA_PIN) |
| |
| #endif /* CONFIG_HX711 */ |
| |
| /**************************************************************************** |
| * Public Data |
| ****************************************************************************/ |
| |
| /* Global driver instances */ |
| |
| #ifdef CONFIG_STM32_SPI1 |
| extern struct spi_dev_s *g_spi1; |
| #endif |
| #ifdef CONFIG_STM32_SPI2 |
| extern struct spi_dev_s *g_spi2; |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_spidev_initialize |
| * |
| * Description: |
| * Called to configure SPI chip select GPIO pins. |
| * |
| ****************************************************************************/ |
| |
| void stm32_spidev_initialize(void); |
| |
| /**************************************************************************** |
| * Name: stm32_hx711_initialize |
| * |
| * Description: |
| * Initialize hx711 chip |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_ADC_HX711 |
| int stm32_hx711_initialize(void); |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_mmcsd_initialize |
| * |
| * Description: |
| * Initializes SPI-based SD card |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_MMCSD |
| int stm32_mmcsd_initialize(int minor); |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_w25initialize |
| * |
| * Description: |
| * Called to initialize Winbond W25 memory |
| * |
| ****************************************************************************/ |
| |
| int stm32_w25initialize(int minor); |
| |
| /**************************************************************************** |
| * Name: stm32_usbinitialize |
| * |
| * Description: |
| * Called from stm32_boardinitialize very early in initialization to setup |
| * USB-related GPIO pins for the WeAct Studio MiniF4 board. |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_STM32_OTGFS |
| void stm32_usbinitialize(void); |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_usbhost_initialize |
| * |
| * Description: |
| * Called at application startup time to initialize the USB host |
| * functionality. This function will start a thread that will monitor for |
| * device connection/disconnection events. |
| * |
| ****************************************************************************/ |
| |
| #if defined(CONFIG_STM32_OTGFS) && defined(CONFIG_USBHOST) |
| int stm32_usbhost_initialize(void); |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_gpio_initialize |
| * |
| * Description: |
| * Initialize GPIO drivers |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_STM32F411MINIMUM_GPIO |
| int stm32_gpio_initialize(void); |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_pwm_setup |
| * |
| * Description: |
| * Initialize PWM and register the PWM device. |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_PWM |
| int stm32_pwm_setup(void); |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_rgbled_setup |
| * |
| * Description: |
| * This function is called by board initialization logic to configure the |
| * RGB LED driver. This function will register the driver as /dev/rgbled0. |
| * |
| * Input Parameters: |
| * None |
| * |
| * Returned Value: |
| * Zero is returned on success. Otherwise, a negated errno value is |
| * returned to indicate the nature of the failure. |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_RGBLED |
| int stm32_rgbled_setup(void); |
| #endif |
| |
| /**************************************************************************** |
| * Name: stm32_bringup |
| * |
| * Description: |
| * Perform architecture-specific initialization |
| * |
| * CONFIG_BOARD_LATE_INITIALIZE=y : |
| * Called from board_late_initialize(). |
| * |
| * CONFIG_BOARD_LATE_INITIALIZE=y && CONFIG_BOARDCTL=y : |
| * Called from the NSH library |
| * |
| ****************************************************************************/ |
| |
| int stm32_bringup(void); |
| |
| #endif /* __BOARDS_ARM_STM32_STM32F411_MINIMUM_SRC_STM32F411_MINIMUM_H */ |