mirror of
https://github.com/apache/nuttx.git
synced 2026-05-30 21:36:28 +08:00
nucleo-g474re: Add Nucleo G474RE bord suport
based on boards/arm/stm32/b-g474e-dpow1 2022-05-01 aeb9c5d822
This commit is contained in:
@@ -1959,6 +1959,16 @@ config ARCH_BOARD_NUCLEO_G431RB
|
|||||||
---help---
|
---help---
|
||||||
STMicro Nucleo-G431RB board based on the STMicro STM32G431RB MCU.
|
STMicro Nucleo-G431RB board based on the STMicro STM32G431RB MCU.
|
||||||
|
|
||||||
|
config ARCH_BOARD_NUCLEO_G474RE
|
||||||
|
bool "ST Micro Nucleo G474RE"
|
||||||
|
depends on ARCH_CHIP_STM32G474R
|
||||||
|
select ARCH_HAVE_LEDS
|
||||||
|
select ARCH_HAVE_BUTTONS
|
||||||
|
---help---
|
||||||
|
STMicro Nucleo-G474RE board based on the STMicro STM32G474RET6
|
||||||
|
MCU, a Cortex-M4 with FPU, 170 MHz, 128 KB SRAM, 512 KB code.
|
||||||
|
See boards/arm/stm32/nucleo-g474re/README.txt.
|
||||||
|
|
||||||
config ARCH_BOARD_B_L072Z_LRWAN1
|
config ARCH_BOARD_B_L072Z_LRWAN1
|
||||||
bool "B-L072Z-LRWAN1"
|
bool "B-L072Z-LRWAN1"
|
||||||
depends on ARCH_CHIP_STM32L072CZ
|
depends on ARCH_CHIP_STM32L072CZ
|
||||||
@@ -2590,6 +2600,7 @@ config ARCH_BOARD
|
|||||||
default "b-g431b-esc1" if ARCH_BOARD_B_G431B_ESC1
|
default "b-g431b-esc1" if ARCH_BOARD_B_G431B_ESC1
|
||||||
default "nucleo-g431kb" if ARCH_BOARD_NUCLEO_G431KB
|
default "nucleo-g431kb" if ARCH_BOARD_NUCLEO_G431KB
|
||||||
default "nucleo-g431rb" if ARCH_BOARD_NUCLEO_G431RB
|
default "nucleo-g431rb" if ARCH_BOARD_NUCLEO_G431RB
|
||||||
|
default "nucleo-g474re" if ARCH_BOARD_NUCLEO_G474RE
|
||||||
default "b-l072z-lrwan1" if ARCH_BOARD_B_L072Z_LRWAN1
|
default "b-l072z-lrwan1" if ARCH_BOARD_B_L072Z_LRWAN1
|
||||||
default "b-l475e-iot01a" if ARCH_BOARD_B_L475E_IOT01A
|
default "b-l475e-iot01a" if ARCH_BOARD_B_L475E_IOT01A
|
||||||
default "b-u585i-iot02a" if ARCH_BOARD_B_U585I_IOT02A
|
default "b-u585i-iot02a" if ARCH_BOARD_B_U585I_IOT02A
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
#
|
||||||
|
# For a description of the syntax of this configuration file,
|
||||||
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||||
|
#
|
||||||
|
|
||||||
|
if ARCH_BOARD_NUCLEO_G474RE
|
||||||
|
|
||||||
|
#config SOME_CONFIG_INT
|
||||||
|
# int "Description"
|
||||||
|
# default 1
|
||||||
|
# depends on FEATURE_X
|
||||||
|
#
|
||||||
|
#config SOME_CONFIG_BOOL
|
||||||
|
# bool "Description"
|
||||||
|
# default n if !FEATURE_X
|
||||||
|
# default y if FEATURE_X
|
||||||
|
# depends on FEATURE_Y
|
||||||
|
# ---help---
|
||||||
|
# Help text goes here.
|
||||||
|
|
||||||
|
endif # ARCH_BOARD_NUCLEO_G474RE
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
README
|
||||||
|
======
|
||||||
|
|
||||||
|
This is the README file for a port of NuttX to the ST Micro Nucleo G474RE
|
||||||
|
board with STM32G474RE MCU. For more information about this board, see:
|
||||||
|
|
||||||
|
https://www.st.com/en/evaluation-tools/nucleo-g474re.html
|
||||||
|
|
||||||
|
Contents
|
||||||
|
========
|
||||||
|
|
||||||
|
- Status
|
||||||
|
- Development Environment
|
||||||
|
- Toolchains
|
||||||
|
- Debugging
|
||||||
|
- Hardware
|
||||||
|
- MCU Clocking
|
||||||
|
- GPIOs
|
||||||
|
- Buttons
|
||||||
|
- LEDs
|
||||||
|
- Serial Consoles
|
||||||
|
- FLASH Bootloader Support
|
||||||
|
- Configurations
|
||||||
|
|
||||||
|
Status
|
||||||
|
======
|
||||||
|
|
||||||
|
This port boots NuttX through to a functional NSH prompt.
|
||||||
|
|
||||||
|
Development Environment
|
||||||
|
=======================
|
||||||
|
|
||||||
|
Toolchains
|
||||||
|
----------
|
||||||
|
An appropriate ARM toolchain is needed, such as the one built with the
|
||||||
|
customized NuttX buildroot or the ready-made GNU Tools for Arm Embedded
|
||||||
|
Processors.
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
---------
|
||||||
|
The board incorporates a STLINK-V3E programmer/debugger accessible via the
|
||||||
|
Micro-USB Type B connector.
|
||||||
|
|
||||||
|
To debug with OpenOCD and arm-nuttx-eabi-gdb:
|
||||||
|
|
||||||
|
* Use 'make menuconfig' to set CONFIG_DEBUG_SYMBOLS and CONFIG_DEBUG_NOOPT.
|
||||||
|
To see debug output, e.g., the "ABCDE" printed in __start(), also set
|
||||||
|
CONFIG_DEBUG_FEATURES.
|
||||||
|
|
||||||
|
* Build NuttX.
|
||||||
|
|
||||||
|
* Flash the code using:
|
||||||
|
$ openocd -f interface/stlink.cfg -f target/stm32g4x.cfg -c init \
|
||||||
|
-c "reset halt" -c "flash write_image erase nuttx.bin 0x08000000"
|
||||||
|
|
||||||
|
* Start GDB with:
|
||||||
|
$ arm-nuttx-eabi-gdb -tui nuttx
|
||||||
|
|
||||||
|
* In GDB:
|
||||||
|
(gdb) target remote localhost:3333
|
||||||
|
(gdb) monitor reset halt
|
||||||
|
(gdb) load
|
||||||
|
|
||||||
|
Hardware
|
||||||
|
========
|
||||||
|
|
||||||
|
MCU Clocking
|
||||||
|
------------
|
||||||
|
By default, the MCU on this board is clocked from the MCU's internal HSI
|
||||||
|
clock, and only this option is supported by software at this time.
|
||||||
|
|
||||||
|
If software support is added for it, the MCU could be clocked from the
|
||||||
|
following other sources: a 24 MHz oscillator on X2, MCO from STLINK-V3E, or
|
||||||
|
external clock from connector CN9, pin 26.
|
||||||
|
|
||||||
|
GPIOs
|
||||||
|
-----
|
||||||
|
|
||||||
|
Buttons
|
||||||
|
-------
|
||||||
|
The board has 1 user button.
|
||||||
|
|
||||||
|
LEDs
|
||||||
|
----
|
||||||
|
The board has 1 user LED.
|
||||||
|
|
||||||
|
Serial Consoles
|
||||||
|
===============
|
||||||
|
|
||||||
|
The MCU's USART3 is exposed to the pin 1 and 2 of the "Morpho connector" CN7
|
||||||
|
on the board.
|
||||||
|
|
||||||
|
FLASH Bootloader Support
|
||||||
|
========================
|
||||||
|
|
||||||
|
If implementing a FLASH bootloader, turn on Kconfig option CONFIG_STM32_DFU.
|
||||||
|
This option activates an alternate linker script, scripts/ld.script.dfu,
|
||||||
|
which causes NuttX to leave a gap at the start of FLASH, leaving that space
|
||||||
|
for the FLASH bootloader. See scripts/ld.script.dfu for details. It also
|
||||||
|
causes NuttX to relocate its vector table and possibly make other
|
||||||
|
adjustments.
|
||||||
|
|
||||||
|
One possible bootloader is STmicro's OpenBootloader "middleware" supplied
|
||||||
|
with STM32CubeG4 version 1.3.0. On the host (PC), it should be possible to
|
||||||
|
use STmicro's STM32CubeProgrammer or the stm32loader.py script from
|
||||||
|
https://github.com/jsnyder/stm32loader. That script can be invoked with
|
||||||
|
parameters such as:
|
||||||
|
|
||||||
|
stm32loader.py -p /dev/ttyACM0 -a 0x08006000 -e -w -v -g 0x08006000 nuttx.bin
|
||||||
|
|
||||||
|
where the given address (0x08006000 in this case) must match the starting
|
||||||
|
address in scripts/ld.script.dfu.
|
||||||
|
|
||||||
|
Configurations
|
||||||
|
==============
|
||||||
|
|
||||||
|
nsh
|
||||||
|
---
|
||||||
|
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
#
|
||||||
|
# This file is autogenerated: PLEASE DO NOT EDIT IT.
|
||||||
|
#
|
||||||
|
# You can use "make menuconfig" to make any modifications to the installed .config file.
|
||||||
|
# You can then do "make savedefconfig" to generate a new defconfig file that includes your
|
||||||
|
# modifications.
|
||||||
|
#
|
||||||
|
# CONFIG_ARCH_LEDS is not set
|
||||||
|
# CONFIG_DISABLE_OS_API is not set
|
||||||
|
CONFIG_ARCH="arm"
|
||||||
|
CONFIG_ARCH_BOARD="nucleo-g474re"
|
||||||
|
CONFIG_ARCH_BOARD_NUCLEO_G474RE=y
|
||||||
|
CONFIG_ARCH_BUTTONS=y
|
||||||
|
CONFIG_ARCH_CHIP="stm32"
|
||||||
|
CONFIG_ARCH_CHIP_STM32=y
|
||||||
|
CONFIG_ARCH_CHIP_STM32G474R=y
|
||||||
|
CONFIG_ARCH_HIPRI_INTERRUPT=y
|
||||||
|
CONFIG_ARCH_RAMVECTORS=y
|
||||||
|
CONFIG_ARCH_STACKDUMP=y
|
||||||
|
CONFIG_ARMV7M_LIBM=y
|
||||||
|
CONFIG_ARMV7M_MEMCPY=y
|
||||||
|
CONFIG_DEBUG_FEATURES=y
|
||||||
|
CONFIG_DEBUG_SYMBOLS=y
|
||||||
|
CONFIG_INIT_ENTRYPOINT="nsh_main"
|
||||||
|
CONFIG_LIBC_FLOATINGPOINT=y
|
||||||
|
CONFIG_LIBM=y
|
||||||
|
CONFIG_NSH_ARCHINIT=y
|
||||||
|
CONFIG_NSH_FILEIOSIZE=512
|
||||||
|
CONFIG_NSH_LINELEN=64
|
||||||
|
CONFIG_NSH_READLINE=y
|
||||||
|
CONFIG_PRIORITY_INHERITANCE=y
|
||||||
|
CONFIG_PTHREAD_MUTEX_DEFAULT_PRIO_INHERIT=y
|
||||||
|
CONFIG_RAM_SIZE=98304
|
||||||
|
CONFIG_RAM_START=0x20000000
|
||||||
|
CONFIG_RAW_BINARY=y
|
||||||
|
CONFIG_SCHED_HPWORK=y
|
||||||
|
CONFIG_SCHED_LPWORK=y
|
||||||
|
CONFIG_SCHED_WAITPID=y
|
||||||
|
CONFIG_STM32_USART3=y
|
||||||
|
CONFIG_SYSTEM_NSH=y
|
||||||
|
CONFIG_USART3_SERIAL_CONSOLE=y
|
||||||
|
CONFIG_USERLED=y
|
||||||
|
CONFIG_USERLED_LOWER=y
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
#
|
||||||
|
# This file is autogenerated: PLEASE DO NOT EDIT IT.
|
||||||
|
#
|
||||||
|
# You can use "make menuconfig" to make any modifications to the installed .config file.
|
||||||
|
# You can then do "make savedefconfig" to generate a new defconfig file that includes your
|
||||||
|
# modifications.
|
||||||
|
#
|
||||||
|
# CONFIG_ARCH_LEDS is not set
|
||||||
|
# CONFIG_DISABLE_OS_API is not set
|
||||||
|
CONFIG_ARCH="arm"
|
||||||
|
CONFIG_ARCH_BOARD="nucleo-g474re"
|
||||||
|
CONFIG_ARCH_BOARD_NUCLEO_G474RE=y
|
||||||
|
CONFIG_ARCH_BUTTONS=y
|
||||||
|
CONFIG_ARCH_CHIP="stm32"
|
||||||
|
CONFIG_ARCH_CHIP_STM32=y
|
||||||
|
CONFIG_ARCH_CHIP_STM32G474R=y
|
||||||
|
CONFIG_ARCH_HIPRI_INTERRUPT=y
|
||||||
|
CONFIG_ARCH_RAMVECTORS=y
|
||||||
|
CONFIG_ARCH_STACKDUMP=y
|
||||||
|
CONFIG_ARMV7M_LIBM=y
|
||||||
|
CONFIG_ARMV7M_MEMCPY=y
|
||||||
|
CONFIG_CDCACM=y
|
||||||
|
CONFIG_DEBUG_ERROR=y
|
||||||
|
CONFIG_DEBUG_FEATURES=y
|
||||||
|
CONFIG_DEBUG_HARDFAULT_INFO=y
|
||||||
|
CONFIG_DEBUG_INFO=y
|
||||||
|
CONFIG_DEBUG_SYMBOLS=y
|
||||||
|
CONFIG_DEBUG_USB=y
|
||||||
|
CONFIG_DEBUG_USB_ERROR=y
|
||||||
|
CONFIG_DEBUG_USB_WARN=y
|
||||||
|
CONFIG_DEBUG_WARN=y
|
||||||
|
CONFIG_INIT_ENTRYPOINT="nsh_main"
|
||||||
|
CONFIG_LIBC_FLOATINGPOINT=y
|
||||||
|
CONFIG_LIBM=y
|
||||||
|
CONFIG_NSH_ARCHINIT=y
|
||||||
|
CONFIG_NSH_FILEIOSIZE=512
|
||||||
|
CONFIG_NSH_LINELEN=64
|
||||||
|
CONFIG_NSH_READLINE=y
|
||||||
|
CONFIG_PRIORITY_INHERITANCE=y
|
||||||
|
CONFIG_PTHREAD_MUTEX_DEFAULT_PRIO_INHERIT=y
|
||||||
|
CONFIG_RAM_SIZE=98304
|
||||||
|
CONFIG_RAM_START=0x20000000
|
||||||
|
CONFIG_RAW_BINARY=y
|
||||||
|
CONFIG_SCHED_HPWORK=y
|
||||||
|
CONFIG_SCHED_LPWORK=y
|
||||||
|
CONFIG_SCHED_WAITPID=y
|
||||||
|
CONFIG_STM32_USART3=y
|
||||||
|
CONFIG_STM32_USBFS=y
|
||||||
|
CONFIG_SYSTEM_NSH=y
|
||||||
|
CONFIG_USART3_SERIAL_CONSOLE=y
|
||||||
|
CONFIG_USBDEV_BUSPOWERED=y
|
||||||
|
CONFIG_USBDEV_DUALSPEED=y
|
||||||
|
CONFIG_USBDEV_ISOCHRONOUS=y
|
||||||
|
CONFIG_USBDEV_MAXPOWER=500
|
||||||
|
CONFIG_USERLED=y
|
||||||
|
CONFIG_USERLED_LOWER=y
|
||||||
@@ -0,0 +1,184 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/include/board.h
|
||||||
|
*
|
||||||
|
* 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_NUCLEO-G474RE_INCLUDE_BOARD_H
|
||||||
|
#define __BOARDS_ARM_STM32_NUCLEO-G474RE_INCLUDE_BOARD_H
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Pre-processor Definitions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/* Clocking *****************************************************************/
|
||||||
|
|
||||||
|
#undef STM32_BOARD_XTAL /* Not installed by default */
|
||||||
|
|
||||||
|
#define STM32_HSI_FREQUENCY 16000000ul /* 16MHz */
|
||||||
|
#define STM32_LSI_FREQUENCY 32000 /* 32kHz */
|
||||||
|
#undef STM32_HSE_FREQUENCY /* Not installed by default */
|
||||||
|
#undef STM32_LSE_FREQUENCY /* Not available on this board */
|
||||||
|
|
||||||
|
/* Main PLL Configuration.
|
||||||
|
*
|
||||||
|
* PLL source is HSI = 16MHz
|
||||||
|
* PLLN = 85, PLLM = 4, PLLP = 10, PLLQ = 2, PLLR = 2
|
||||||
|
*
|
||||||
|
* f(VCO Clock) = f(PLL Clock Input) x (PLLN / PLLM)
|
||||||
|
* f(PLL_P) = f(VCO Clock) / PLLP
|
||||||
|
* f(PLL_Q) = f(VCO Clock) / PLLQ
|
||||||
|
* f(PLL_R) = f(VCO Clock) / PLLR
|
||||||
|
*
|
||||||
|
* Where:
|
||||||
|
* 8 <= PLLN <= 127
|
||||||
|
* 1 <= PLLM <= 16
|
||||||
|
* PLLP = 2 through 31
|
||||||
|
* PLLQ = 2, 4, 6, or 8
|
||||||
|
* PLLR = 2, 4, 6, or 8
|
||||||
|
*
|
||||||
|
* Do not exceed 170MHz on f(PLL_P), f(PLL_Q), or f(PLL_R).
|
||||||
|
* 64MHz <= f(VCO Clock) <= 344MHz.
|
||||||
|
*
|
||||||
|
* Given the above:
|
||||||
|
*
|
||||||
|
* f(VCO Clock) = HSI x PLLN / PLLM
|
||||||
|
* = 16MHz x 85 / 4
|
||||||
|
* = 340MHz
|
||||||
|
*
|
||||||
|
* PLLPCLK = f(VCO Clock) / PLLP
|
||||||
|
* = 340MHz / 10
|
||||||
|
* = 34MHz
|
||||||
|
* (May be used for ADC)
|
||||||
|
*
|
||||||
|
* PLLQCLK = f(VCO Clock) / PLLQ
|
||||||
|
* = 340MHz / 2
|
||||||
|
* = 170MHz
|
||||||
|
* (May be used for QUADSPI, FDCAN, SAI1, I2S3. If set to
|
||||||
|
* 48MHz, may be used for USB, RNG.)
|
||||||
|
*
|
||||||
|
* PLLRCLK = f(VCO Clock) / PLLR
|
||||||
|
* = 340MHz / 2
|
||||||
|
* = 170MHz
|
||||||
|
* (May be used for SYSCLK and most peripherals.)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define STM32_PLLCFGR_PLLSRC RCC_PLLCFGR_PLLSRC_HSI
|
||||||
|
#define STM32_PLLCFGR_PLLCFG (RCC_PLLCFGR_PLLPEN | \
|
||||||
|
RCC_PLLCFGR_PLLQEN | \
|
||||||
|
RCC_PLLCFGR_PLLREN)
|
||||||
|
|
||||||
|
#define STM32_PLLCFGR_PLLN RCC_PLLCFGR_PLLN(85)
|
||||||
|
#define STM32_PLLCFGR_PLLM RCC_PLLCFGR_PLLM(4)
|
||||||
|
#define STM32_PLLCFGR_PLLP RCC_PLLCFGR_PLLPDIV(10)
|
||||||
|
#define STM32_PLLCFGR_PLLQ RCC_PLLCFGR_PLLQ_2
|
||||||
|
#define STM32_PLLCFGR_PLLR RCC_PLLCFGR_PLLR_2
|
||||||
|
|
||||||
|
#define STM32_VCO_FREQUENCY ((STM32_HSI_FREQUENCY / 4) * 85)
|
||||||
|
#define STM32_PLLP_FREQUENCY (STM32_VCO_FREQUENCY / 10)
|
||||||
|
#define STM32_PLLQ_FREQUENCY (STM32_VCO_FREQUENCY / 2)
|
||||||
|
#define STM32_PLLR_FREQUENCY (STM32_VCO_FREQUENCY / 2)
|
||||||
|
|
||||||
|
/* Use the PLL and set the SYSCLK source to be PLLR (170MHz) */
|
||||||
|
|
||||||
|
#define STM32_SYSCLK_SW RCC_CFGR_SW_PLL
|
||||||
|
#define STM32_SYSCLK_SWS RCC_CFGR_SWS_PLL
|
||||||
|
#define STM32_SYSCLK_FREQUENCY STM32_PLLR_FREQUENCY
|
||||||
|
|
||||||
|
/* AHB clock (HCLK) is SYSCLK (170MHz) */
|
||||||
|
|
||||||
|
#define STM32_RCC_CFGR_HPRE RCC_CFGR_HPRE_SYSCLK
|
||||||
|
#define STM32_HCLK_FREQUENCY STM32_SYSCLK_FREQUENCY
|
||||||
|
|
||||||
|
/* APB1 clock (PCLK1) is HCLK (170MHz) */
|
||||||
|
|
||||||
|
#define STM32_RCC_CFGR_PPRE1 RCC_CFGR_PPRE1_HCLK
|
||||||
|
#define STM32_PCLK1_FREQUENCY STM32_HCLK_FREQUENCY
|
||||||
|
|
||||||
|
/* APB2 clock (PCLK2) is HCLK (170MHz) */
|
||||||
|
|
||||||
|
#define STM32_RCC_CFGR_PPRE2 RCC_CFGR_PPRE2_HCLK
|
||||||
|
#define STM32_PCLK2_FREQUENCY STM32_HCLK_FREQUENCY
|
||||||
|
|
||||||
|
/* LED definitions **********************************************************/
|
||||||
|
|
||||||
|
/* The NucleoG474RE board has one user LED.
|
||||||
|
*
|
||||||
|
* If CONFIG_ARCH_LEDS is not defined, then the user can control the LEDs in
|
||||||
|
* any way. The following definitions are used to access individual LEDs.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* LED index values for use with board_userled() */
|
||||||
|
|
||||||
|
#define BOARD_LED1 0 /* LD2 (Green) */
|
||||||
|
#define BOARD_NLEDS 1
|
||||||
|
|
||||||
|
/* LED bits for use with board_userled_all() */
|
||||||
|
|
||||||
|
#define BOARD_LED1_BIT (1 << BOARD_LED1)
|
||||||
|
|
||||||
|
/* If CONFIG_ARCH_LEDs is defined, then NuttX will control the 4 user LEDs
|
||||||
|
* on the board. The following definitions describe how NuttX controls the
|
||||||
|
* LEDs:
|
||||||
|
*
|
||||||
|
* |--------------------|-------------------------|------------|
|
||||||
|
* | SYMBOL | Meaning | LED states |
|
||||||
|
* |--------------------|-------------------------|------------|
|
||||||
|
* | LED_STARTED | NuttX has been started | 0 0 0 0 |
|
||||||
|
* | LED_HEAPALLOCATE | Heap has been allocated | 0 0 0 0 |
|
||||||
|
* | LED_IRQSENABLED | Interrupts enabled | 0 0 0 0 |
|
||||||
|
* | LED_STACKCREATED | Idle stack created | 1 0 0 0 |
|
||||||
|
* | LED_INIRQ | In an interrupt | No change |
|
||||||
|
* | LED_SIGNAL | In a signal handler | No change |
|
||||||
|
* | LED_ASSERTION | An assertion failed | No change |
|
||||||
|
* | LED_PANIC | The system has crashed | 0 B 0 0 |
|
||||||
|
* | LED_IDLE | STM32 is is sleep mode | Not used |
|
||||||
|
* |--------------------|-------------------------|------------|
|
||||||
|
*
|
||||||
|
* LED states legend:
|
||||||
|
* 0 = off
|
||||||
|
* 1 = on
|
||||||
|
* B = blink
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define LED_STARTED 0
|
||||||
|
#define LED_HEAPALLOCATE 0
|
||||||
|
#define LED_IRQSENABLED 0
|
||||||
|
#define LED_STACKCREATED 1
|
||||||
|
#define LED_INIRQ 2
|
||||||
|
#define LED_SIGNAL 2
|
||||||
|
#define LED_ASSERTION 2
|
||||||
|
#define LED_PANIC 3
|
||||||
|
|
||||||
|
/* Button definitions *******************************************************/
|
||||||
|
|
||||||
|
/* Alternate function pin selections ****************************************/
|
||||||
|
|
||||||
|
/* USART3 (ST LINK V3E Virtual Console) */
|
||||||
|
|
||||||
|
#define GPIO_USART3_TX GPIO_USART3_TX_3 /* PC10 */
|
||||||
|
#define GPIO_USART3_RX GPIO_USART3_RX_3 /* PC11 */
|
||||||
|
|
||||||
|
/* Pin Multiplexing Disambiguation ******************************************/
|
||||||
|
|
||||||
|
#endif /* __BOARDS_ARM_STM32_NUCLEO_G474RE_INCLUDE_BOARD_H */
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
############################################################################
|
||||||
|
# boards/arm/stm32/nucleo-g474re/scripts/Make.defs
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
include $(TOPDIR)/.config
|
||||||
|
include $(TOPDIR)/tools/Config.mk
|
||||||
|
include $(TOPDIR)/arch/arm/src/armv7-m/Toolchain.defs
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_STM32_DFU),y)
|
||||||
|
LDSCRIPT = ld.script.dfu
|
||||||
|
else
|
||||||
|
LDSCRIPT = ld.script
|
||||||
|
endif
|
||||||
|
|
||||||
|
ARCHSCRIPT += $(BOARD_DIR)$(DELIM)scripts$(DELIM)$(LDSCRIPT)
|
||||||
|
|
||||||
|
ARCHCFLAGS += -funwind-tables
|
||||||
|
ARCHCXXFLAGS += -funwind-tables
|
||||||
|
ARCHWARNINGS = -Wall -Wstrict-prototypes -Wshadow -Wundef
|
||||||
|
ARCHWARNINGSXX = -Wall -Wshadow -Wundef
|
||||||
|
ARCHPICFLAGS = -fpic -msingle-pic-base -mpic-register=r10
|
||||||
|
|
||||||
|
CFLAGS := $(ARCHCFLAGS) $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
|
||||||
|
CPICFLAGS = $(ARCHPICFLAGS) $(CFLAGS)
|
||||||
|
CXXFLAGS := $(ARCHCXXFLAGS) $(ARCHWARNINGSXX) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
|
||||||
|
CXXPICFLAGS = $(ARCHPICFLAGS) $(CXXFLAGS)
|
||||||
|
CPPFLAGS := $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS)
|
||||||
|
AFLAGS := $(CFLAGS) -D__ASSEMBLY__
|
||||||
|
|
||||||
|
NXFLATLDFLAGS1 = -r -d -warn-common
|
||||||
|
NXFLATLDFLAGS2 = $(NXFLATLDFLAGS1) -T$(TOPDIR)/binfmt/libnxflat/gnu-nxflat-pcrel.ld -no-check-sections
|
||||||
|
LDNXFLATFLAGS = -e main -s 2048
|
||||||
|
|
||||||
|
# Embed absolute path to source file in debug information so that Eclipse
|
||||||
|
# source level debugging won't get confused. See:
|
||||||
|
# https://stackoverflow.com/questions/1275476/gcc-gdb-how-to-embed-absolute-path-to-source-file-in-debug-information
|
||||||
|
CFLAGS += -fdebug-prefix-map=..=$(readlink -f ..)
|
||||||
@@ -0,0 +1,136 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/scripts/ld.script
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/* The STM32G474RE has 512 KiB of FLASH beginning at address 0x0800:0000.
|
||||||
|
*
|
||||||
|
* When booting from FLASH, FLASH memory is aliased to address 0x0000:0000
|
||||||
|
* where the code expects to begin execution by jumping to the entry point in
|
||||||
|
* the 0x0800:0000 address range.
|
||||||
|
*
|
||||||
|
* The STM32G474RE has a total of 128 KiB of SRAM in three separate areas:
|
||||||
|
*
|
||||||
|
* 1) 80 KiB SRAM1 mapped at 0x2000:0000 thru 0x2001:3fff.
|
||||||
|
* 2) 16 KiB SRAM2 mapped at 0x2001:4000 thru 0x2001:7fff.
|
||||||
|
*
|
||||||
|
* CCM SRAM (Routine Booster):
|
||||||
|
*
|
||||||
|
* 3) 32 KiB CCM SRAM mapped at 0x1000:0000 thru 0x1000:7fff
|
||||||
|
* but also aliased at at 0x2001:8000 thru 0x2001:ffff to be contiguous
|
||||||
|
* with the SRAM1 and SRAM2.
|
||||||
|
*
|
||||||
|
* Because SRAM1 and SRAM2 are contiguous, they are treated as one region
|
||||||
|
* by this logic.
|
||||||
|
*
|
||||||
|
* CCM SRAM is also contiguous to SRAM1 and SRAM2, however it is excluded
|
||||||
|
* from this linker script, to keep it reserved for special uses in code.
|
||||||
|
* REVISIT: Is this the correct way to handle CCM SRAM?
|
||||||
|
*/
|
||||||
|
|
||||||
|
MEMORY
|
||||||
|
{
|
||||||
|
flash (rx) : ORIGIN = 0x08000000, LENGTH = 512K
|
||||||
|
sram (rwx) : ORIGIN = 0x20000000, LENGTH = 96K
|
||||||
|
}
|
||||||
|
|
||||||
|
OUTPUT_ARCH(arm)
|
||||||
|
EXTERN(_vectors)
|
||||||
|
ENTRY(_stext)
|
||||||
|
|
||||||
|
SECTIONS
|
||||||
|
{
|
||||||
|
.text : {
|
||||||
|
_stext = ABSOLUTE(.);
|
||||||
|
*(.vectors)
|
||||||
|
*(.text .text.*)
|
||||||
|
*(.fixup)
|
||||||
|
*(.gnu.warning)
|
||||||
|
*(.rodata .rodata.*)
|
||||||
|
*(.gnu.linkonce.t.*)
|
||||||
|
*(.glue_7)
|
||||||
|
*(.glue_7t)
|
||||||
|
*(.got)
|
||||||
|
*(.gcc_except_table)
|
||||||
|
*(.gnu.linkonce.r.*)
|
||||||
|
_etext = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.init_section : ALIGN(4) {
|
||||||
|
_sinit = ABSOLUTE(.);
|
||||||
|
*(.init_array .init_array.*)
|
||||||
|
_einit = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.ARM.extab : ALIGN(4) {
|
||||||
|
*(.ARM.extab*)
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.ARM.exidx : ALIGN(4) {
|
||||||
|
__exidx_start = ABSOLUTE(.);
|
||||||
|
*(.ARM.exidx*)
|
||||||
|
__exidx_end = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.tdata : {
|
||||||
|
_stdata = ABSOLUTE(.);
|
||||||
|
*(.tdata .tdata.* .gnu.linkonce.td.*);
|
||||||
|
_etdata = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.tbss : {
|
||||||
|
_stbss = ABSOLUTE(.);
|
||||||
|
*(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon);
|
||||||
|
_etbss = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
_eronly = ABSOLUTE(.);
|
||||||
|
|
||||||
|
.data : ALIGN(4) {
|
||||||
|
_sdata = ABSOLUTE(.);
|
||||||
|
*(.data .data.*)
|
||||||
|
*(.gnu.linkonce.d.*)
|
||||||
|
CONSTRUCTORS
|
||||||
|
. = ALIGN(4);
|
||||||
|
_edata = ABSOLUTE(.);
|
||||||
|
} > sram AT > flash
|
||||||
|
|
||||||
|
.bss : ALIGN(4) {
|
||||||
|
_sbss = ABSOLUTE(.);
|
||||||
|
*(.bss .bss.*)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
|
*(COMMON)
|
||||||
|
. = ALIGN(4);
|
||||||
|
_ebss = ABSOLUTE(.);
|
||||||
|
} > sram
|
||||||
|
|
||||||
|
/* Stabs debugging sections. */
|
||||||
|
|
||||||
|
.stab 0 : { *(.stab) }
|
||||||
|
.stabstr 0 : { *(.stabstr) }
|
||||||
|
.stab.excl 0 : { *(.stab.excl) }
|
||||||
|
.stab.exclstr 0 : { *(.stab.exclstr) }
|
||||||
|
.stab.index 0 : { *(.stab.index) }
|
||||||
|
.stab.indexstr 0 : { *(.stab.indexstr) }
|
||||||
|
.comment 0 : { *(.comment) }
|
||||||
|
.debug_abbrev 0 : { *(.debug_abbrev) }
|
||||||
|
.debug_info 0 : { *(.debug_info) }
|
||||||
|
.debug_line 0 : { *(.debug_line) }
|
||||||
|
.debug_pubnames 0 : { *(.debug_pubnames) }
|
||||||
|
.debug_aranges 0 : { *(.debug_aranges) }
|
||||||
|
}
|
||||||
@@ -0,0 +1,139 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/scripts/ld.script
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/* The STM32G474RE has 512 KiB of FLASH beginning at address 0x0800:0000.
|
||||||
|
*
|
||||||
|
* When booting from FLASH, FLASH memory is aliased to address 0x0000:0000
|
||||||
|
* where the code expects to begin execution by jumping to the entry point in
|
||||||
|
* the 0x0800:0000 address range. The FLASH bootloader is located there and
|
||||||
|
* allocated up to 24KiB (6 pages of 4k if single bank mode or 12 pages of 2k
|
||||||
|
* if dual bank mode), so our executable will begin at 0x0800:6000, leaving
|
||||||
|
* 488KiB.
|
||||||
|
*
|
||||||
|
* The STM32G474RE has a total of 128 KiB of SRAM in three separate areas:
|
||||||
|
*
|
||||||
|
* 1) 80 KiB SRAM1 mapped at 0x2000:0000 thru 0x2001:3fff.
|
||||||
|
* 2) 16 KiB SRAM2 mapped at 0x2001:4000 thru 0x2001:7fff.
|
||||||
|
*
|
||||||
|
* CCM SRAM (Routine Booster):
|
||||||
|
*
|
||||||
|
* 3) 32 KiB CCM SRAM mapped at 0x1000:0000 thru 0x1000:7fff
|
||||||
|
* but also aliased at at 0x2001:8000 thru 0x2001:ffff to be contiguous
|
||||||
|
* with the SRAM1 and SRAM2.
|
||||||
|
*
|
||||||
|
* Because SRAM1 and SRAM2 are contiguous, they are treated as one region
|
||||||
|
* by this logic.
|
||||||
|
*
|
||||||
|
* CCM SRAM is also contiguous to SRAM1 and SRAM2, however it is excluded
|
||||||
|
* from this linker script, to keep it reserved for special uses in code.
|
||||||
|
* REVISIT: Is this the correct way to handle CCM SRAM?
|
||||||
|
*/
|
||||||
|
|
||||||
|
MEMORY
|
||||||
|
{
|
||||||
|
flash (rx) : ORIGIN = 0x08006000, LENGTH = 488K
|
||||||
|
sram (rwx) : ORIGIN = 0x20000000, LENGTH = 96K
|
||||||
|
}
|
||||||
|
|
||||||
|
OUTPUT_ARCH(arm)
|
||||||
|
EXTERN(_vectors)
|
||||||
|
ENTRY(_stext)
|
||||||
|
|
||||||
|
SECTIONS
|
||||||
|
{
|
||||||
|
.text : {
|
||||||
|
_stext = ABSOLUTE(.);
|
||||||
|
*(.vectors)
|
||||||
|
*(.text .text.*)
|
||||||
|
*(.fixup)
|
||||||
|
*(.gnu.warning)
|
||||||
|
*(.rodata .rodata.*)
|
||||||
|
*(.gnu.linkonce.t.*)
|
||||||
|
*(.glue_7)
|
||||||
|
*(.glue_7t)
|
||||||
|
*(.got)
|
||||||
|
*(.gcc_except_table)
|
||||||
|
*(.gnu.linkonce.r.*)
|
||||||
|
_etext = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.init_section : ALIGN(4) {
|
||||||
|
_sinit = ABSOLUTE(.);
|
||||||
|
*(.init_array .init_array.*)
|
||||||
|
_einit = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.ARM.extab : ALIGN(4) {
|
||||||
|
*(.ARM.extab*)
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.ARM.exidx : ALIGN(4) {
|
||||||
|
__exidx_start = ABSOLUTE(.);
|
||||||
|
*(.ARM.exidx*)
|
||||||
|
__exidx_end = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.tdata : {
|
||||||
|
_stdata = ABSOLUTE(.);
|
||||||
|
*(.tdata .tdata.* .gnu.linkonce.td.*);
|
||||||
|
_etdata = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.tbss : {
|
||||||
|
_stbss = ABSOLUTE(.);
|
||||||
|
*(.tbss .tbss.* .gnu.linkonce.tb.* .tcommon);
|
||||||
|
_etbss = ABSOLUTE(.);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
_eronly = ABSOLUTE(.);
|
||||||
|
|
||||||
|
.data : ALIGN(4) {
|
||||||
|
_sdata = ABSOLUTE(.);
|
||||||
|
*(.data .data.*)
|
||||||
|
*(.gnu.linkonce.d.*)
|
||||||
|
CONSTRUCTORS
|
||||||
|
. = ALIGN(4);
|
||||||
|
_edata = ABSOLUTE(.);
|
||||||
|
} > sram AT > flash
|
||||||
|
|
||||||
|
.bss : ALIGN(4) {
|
||||||
|
_sbss = ABSOLUTE(.);
|
||||||
|
*(.bss .bss.*)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
|
*(COMMON)
|
||||||
|
. = ALIGN(4);
|
||||||
|
_ebss = ABSOLUTE(.);
|
||||||
|
} > sram
|
||||||
|
|
||||||
|
/* Stabs debugging sections. */
|
||||||
|
|
||||||
|
.stab 0 : { *(.stab) }
|
||||||
|
.stabstr 0 : { *(.stabstr) }
|
||||||
|
.stab.excl 0 : { *(.stab.excl) }
|
||||||
|
.stab.exclstr 0 : { *(.stab.exclstr) }
|
||||||
|
.stab.index 0 : { *(.stab.index) }
|
||||||
|
.stab.indexstr 0 : { *(.stab.indexstr) }
|
||||||
|
.comment 0 : { *(.comment) }
|
||||||
|
.debug_abbrev 0 : { *(.debug_abbrev) }
|
||||||
|
.debug_info 0 : { *(.debug_info) }
|
||||||
|
.debug_line 0 : { *(.debug_line) }
|
||||||
|
.debug_pubnames 0 : { *(.debug_pubnames) }
|
||||||
|
.debug_aranges 0 : { *(.debug_aranges) }
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
/.depend
|
||||||
|
/Make.dep
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
############################################################################
|
||||||
|
# boards/arm/stm32/nucleo-g474re/src/Make.defs
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
|
ASRCS =
|
||||||
|
CSRCS = stm32_boot.c stm32_bringup.c
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_ARCH_LEDS),y)
|
||||||
|
CSRCS += stm32_autoleds.c
|
||||||
|
else
|
||||||
|
CSRCS += stm32_userleds.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_BOARDCTL),y)
|
||||||
|
CSRCS += stm32_appinit.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_USBDEV),y)
|
||||||
|
CSRCS += stm32_usbdev.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
DEPPATH += --dep-path board
|
||||||
|
VPATH += :board
|
||||||
|
CFLAGS += $(shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)arch$(DELIM)$(CONFIG_ARCH)$(DELIM)src$(DELIM)board$(DELIM)board)
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/src/nucleo-g474re.h
|
||||||
|
*
|
||||||
|
* 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_NUCLEO_G474RE_SRC_NUCLEO_G474RE_H
|
||||||
|
#define __BOARDS_ARM_STM32_NUCLEO_G474RE_SRC_NUCLEO_G474RE_H
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Pre-processor Definitions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/* LED definitions **********************************************************/
|
||||||
|
|
||||||
|
/* The NUCLEO G474RE board has three LEDs. Two of these are controlled by
|
||||||
|
* logic on the board and are not available for software control:
|
||||||
|
*
|
||||||
|
* LD1 COM: LD1 default status is green. LD1 turns to red to indicate that
|
||||||
|
* communications are in progress between the PC and the
|
||||||
|
* ST-LINK/V3.
|
||||||
|
* LD3 PWR: green LED indicates that the board is powered.
|
||||||
|
*
|
||||||
|
* And one can be controlled by software:
|
||||||
|
*
|
||||||
|
* User LD2: green LED is a user LED connected to the I/O PA5 of the
|
||||||
|
* STM32G474RE.
|
||||||
|
*
|
||||||
|
* If CONFIG_ARCH_LEDS is not defined, then the user can control the LED in
|
||||||
|
* any way. The following definition is used to access the LED.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define GPIO_LED1 (GPIO_OUTPUT | GPIO_PUSHPULL | \
|
||||||
|
GPIO_SPEED_5MHz | \
|
||||||
|
GPIO_OUTPUT_CLEAR | \
|
||||||
|
GPIO_PORTA | GPIO_PIN5)
|
||||||
|
|
||||||
|
#define LED_DRIVER_PATH "/dev/userleds"
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Data
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Function Prototypes
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* 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_NUCLEO_G474RE_SRC_NUCLEO_G474RE_H */
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/src/stm32_appinit.c
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <nuttx/board.h>
|
||||||
|
|
||||||
|
#include "nucleo-g474re.h"
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Pre-processor Definitions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_app_initialize
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Perform application specific initialization. This function is never
|
||||||
|
* called directly from application code, but only indirectly via the
|
||||||
|
* (non-standard) boardctl() interface using the command BOARDIOC_INIT.
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* arg - The boardctl() argument is passed to the board_app_initialize()
|
||||||
|
* implementation without modification. The argument has no
|
||||||
|
* meaning to NuttX; the meaning of the argument is a contract
|
||||||
|
* between the board-specific initialization logic and the
|
||||||
|
* matching application logic. The value could be such things as a
|
||||||
|
* mode enumeration value, a set of DIP switch settings, a pointer
|
||||||
|
* to configuration data read from a file or serial FLASH, or
|
||||||
|
* whatever you would like to do with it. Every implementation
|
||||||
|
* should accept zero/NULL as a default configuration.
|
||||||
|
*
|
||||||
|
* Returned Value:
|
||||||
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
||||||
|
* any failure to indicate the nature of the failure.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
int board_app_initialize(uintptr_t arg)
|
||||||
|
{
|
||||||
|
#ifdef CONFIG_BOARD_LATE_INITIALIZE
|
||||||
|
/* Board initialization already performed by board_late_initialize() */
|
||||||
|
|
||||||
|
return OK;
|
||||||
|
#else
|
||||||
|
/* Perform board-specific initialization */
|
||||||
|
|
||||||
|
return stm32_bringup();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/src/stm32_autoleds.c
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
|
#include <nuttx/board.h>
|
||||||
|
#include <arch/board/board.h>
|
||||||
|
|
||||||
|
#include "stm32.h"
|
||||||
|
#include "nucleo-g474re.h"
|
||||||
|
|
||||||
|
#if defined(CONFIG_ARCH_LEDS)
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_autoled_initialize
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void board_autoled_initialize(void)
|
||||||
|
{
|
||||||
|
/* Configure LED1 GPIO for output */
|
||||||
|
|
||||||
|
stm32_configgpio(GPIO_LED1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_autoled_on
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void board_autoled_on(int led)
|
||||||
|
{
|
||||||
|
switch (led)
|
||||||
|
{
|
||||||
|
case BOARD_LED1:
|
||||||
|
stm32_gpiowrite(GPIO_LED1, true);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_autoled_off
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void board_autoled_off(int led)
|
||||||
|
{
|
||||||
|
switch (led)
|
||||||
|
{
|
||||||
|
case BOARD_LED1:
|
||||||
|
stm32_gpiowrite(GPIO_LED1, false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* CONFIG_ARCH_LEDS */
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/src/stm32_boot.c
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <nuttx/board.h>
|
||||||
|
#include <arch/board/board.h>
|
||||||
|
|
||||||
|
#include "nucleo-g474re.h"
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Pre-processor Definitions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Private Function Prototypes
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Private Data
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Private Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: stm32_boardinitialize
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* All STM32 architectures must provide the following entry point. This
|
||||||
|
* entry point is called early in the initialization -- after all memory
|
||||||
|
* has been configured and mapped but before any devices have been
|
||||||
|
* initialized.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void stm32_boardinitialize(void)
|
||||||
|
{
|
||||||
|
#if defined(CONFIG_ARCH_LEDS)
|
||||||
|
/* Configure on-board LEDs if LED support has been selected. */
|
||||||
|
|
||||||
|
board_autoled_initialize();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_late_initialize
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* If CONFIG_BOARD_LATE_INITIALIZE is selected, then an additional
|
||||||
|
* initialization call will be performed in the boot-up sequence to a
|
||||||
|
* function called board_late_initialize(). board_late_initialize()
|
||||||
|
* will be called immediately after up_initialize() is called and just
|
||||||
|
* before the initial application is started.
|
||||||
|
* This additional initialization phase may be used, for example, to
|
||||||
|
* initialize board-specific device drivers.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#ifdef CONFIG_BOARD_LATE_INITIALIZE
|
||||||
|
void board_late_initialize(void)
|
||||||
|
{
|
||||||
|
arm_lowputs("board_late_initialize()\r\n");
|
||||||
|
#if defined(CONFIG_NSH_LIBRARY) && !defined(CONFIG_BOARDCTL)
|
||||||
|
/* Perform board bring-up here instead of from the
|
||||||
|
* board_app_initialize().
|
||||||
|
*/
|
||||||
|
|
||||||
|
stm32_bringup();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/src/stm32_bringup.c
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <syslog.h>
|
||||||
|
|
||||||
|
#include <nuttx/board.h>
|
||||||
|
#include <nuttx/leds/userled.h>
|
||||||
|
#include <nuttx/usb/cdcacm.h>
|
||||||
|
|
||||||
|
#include "nucleo-g474re.h"
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Pre-processor Definitions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#undef HAVE_LEDS
|
||||||
|
|
||||||
|
#if !defined(CONFIG_ARCH_LEDS) && defined(CONFIG_USERLED_LOWER)
|
||||||
|
# define HAVE_LEDS 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: stm32_bringup
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Perform architecture-specific initialization
|
||||||
|
*
|
||||||
|
* CONFIG_BOARD_LATE_INITIALIZE=y :
|
||||||
|
* Called from board_late_initialize().
|
||||||
|
*
|
||||||
|
* CONFIG_BOARD_LATE_INITIALIZE=n && CONFIG_BOARDCTL=y :
|
||||||
|
* Called from the NSH library
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
int stm32_bringup(void)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
#if defined(HAVE_LEDS)
|
||||||
|
/* Register the LED driver */
|
||||||
|
|
||||||
|
ret = userled_lower_initialize(LED_DRIVER_PATH);
|
||||||
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
syslog(LOG_ERR, "ERROR: userled_lower_initialize() failed: %d\n", ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_CDCACM) && !defined(CONFIG_CDCACM_CONSOLE)
|
||||||
|
/* Initialize CDCACM */
|
||||||
|
|
||||||
|
syslog(LOG_INFO, "Initialize CDCACM device\n");
|
||||||
|
|
||||||
|
ret = cdcacm_initialize(0, NULL);
|
||||||
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
syslog(LOG_ERR, "ERROR: cdcacm_initialize failed: %d\n", ret);
|
||||||
|
}
|
||||||
|
#endif /* CONFIG_CDCACM & !CONFIG_CDCACM_CONSOLE */
|
||||||
|
|
||||||
|
UNUSED(ret);
|
||||||
|
return OK;
|
||||||
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/src/stm32_usbdev.c
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
|
#include <nuttx/usb/usbdev.h>
|
||||||
|
#include <nuttx/usb/usbdev_trace.h>
|
||||||
|
|
||||||
|
#include "arm_internal.h"
|
||||||
|
#include "stm32.h"
|
||||||
|
#include "nucleo-g474re.h"
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: stm32_usbsuspend
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Board logic must provide the stm32_usbsuspend logic if the USBDEV driver
|
||||||
|
* is used. This function is called whenever the USB enters or leaves
|
||||||
|
* suspend mode. This is an opportunity for the board logic to shutdown
|
||||||
|
* clocks, power, etc. while the USB is suspended.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void stm32_usbsuspend(FAR struct usbdev_s *dev, bool resume)
|
||||||
|
{
|
||||||
|
uinfo("resume: %d\n", resume);
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* boards/arm/stm32/nucleo-g474re/src/stm32_userleds.c
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
|
#include <arch/board/board.h>
|
||||||
|
|
||||||
|
#include "stm32.h"
|
||||||
|
#include "nucleo-g474re.h"
|
||||||
|
|
||||||
|
#if !defined(CONFIG_ARCH_LEDS)
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_userled_initialize
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Initialize the user LEDs before use. Note: For this function to be
|
||||||
|
* available to user application logic, CONFIG_ARCH_LEDS must not be
|
||||||
|
* defined.
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
uint32_t board_userled_initialize(void)
|
||||||
|
{
|
||||||
|
/* Configure LED GPIOs for output */
|
||||||
|
|
||||||
|
stm32_configgpio(GPIO_LED1);
|
||||||
|
return BOARD_NLEDS;
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_userled
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Allow user application logic to control LEDs one at a time. Note: For
|
||||||
|
* this function to be available to user application logic,
|
||||||
|
* CONFIG_ARCH_LEDS must not be defined.
|
||||||
|
*
|
||||||
|
* Parameters:
|
||||||
|
* led: Index to the LED, which may be one of the defines BOARD_LED1,
|
||||||
|
* BOARD_LED2, BOARD_LED3, or BOARD_LED4.
|
||||||
|
* ledon: true to turn the LED on, false to turn it off.
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void board_userled(int led, bool ledon)
|
||||||
|
{
|
||||||
|
switch (led)
|
||||||
|
{
|
||||||
|
case BOARD_LED1:
|
||||||
|
stm32_gpiowrite(GPIO_LED1, ledon);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: board_userled_all
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Allow user application logic to control all LEDs in one function call.
|
||||||
|
* Note: For this function to be available to user application logic,
|
||||||
|
* CONFIG_ARCH_LEDS must not be defined.
|
||||||
|
*
|
||||||
|
* Parameters:
|
||||||
|
* ledset: Bitmask indicating the new state for all LEDs, where a set bit
|
||||||
|
* indicates LED on and a clear bit indicates LED off. To
|
||||||
|
* construct the bitmask, using a bitwise OR of the defines
|
||||||
|
* BOARD_LED1_BIT, BOARD_LED2_BIT, BOARD_LED3_BIT, and/or
|
||||||
|
* BOARD_LED4_BIT.
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void board_userled_all(uint32_t ledset)
|
||||||
|
{
|
||||||
|
stm32_gpiowrite(GPIO_LED1, (ledset & BOARD_LED1_BIT) != 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* !CONFIG_ARCH_LEDS */
|
||||||
Reference in New Issue
Block a user