d1a3f5e47f
to fix the following clang warning: Error: chip/eoss3_irq.c:138:47: error: format specifies type 'unsigned int' but the argument has type 'uint32_t' (aka 'unsigned long') [-Werror,-Wformat] _err("PANIC!!! Bus fault received: %08x\n", getreg32(NVIC_CFAULTS)); ~~~~ ^~~~~~~~~~~~~~~~~~~~~~ %08lx /github/workspace/sources/nuttx/include/debug.h:126:57: note: expanded from macro '_err' __arch_syslog(LOG_ERR, EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__) ~~~~~~ ^~~~~~~~~~~ /github/workspace/sources/nuttx/arch/arm/src/common/arm_internal.h:134:24: note: expanded from macro 'getreg32' ^~~~~~~~~~~~~~~~~~~~~~~~~~~ Error: chip/eoss3_irq.c:146:49: error: format specifies type 'unsigned int' but the argument has type 'uint32_t' (aka 'unsigned long') [-Werror,-Wformat] _err("PANIC!!! Usage fault received: %08x\n", getreg32(NVIC_CFAULTS)); ~~~~ ^~~~~~~~~~~~~~~~~~~~~~ %08lx Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> |
||
---|---|---|
.. | ||
hardware | ||
chip.h | ||
Kconfig | ||
Make.defs | ||
README.txt | ||
stm32l5_allocateheap.c | ||
stm32l5_dbgmcu.h | ||
stm32l5_dumpgpio.c | ||
stm32l5_exti_gpio.c | ||
stm32l5_exti.h | ||
stm32l5_flash.c | ||
stm32l5_flash.h | ||
stm32l5_gpio.c | ||
stm32l5_gpio.h | ||
stm32l5_idle.c | ||
stm32l5_irq.c | ||
stm32l5_lowputc.c | ||
stm32l5_lowputc.h | ||
stm32l5_lse.c | ||
stm32l5_lsi.c | ||
stm32l5_mpuinit.c | ||
stm32l5_mpuinit.h | ||
stm32l5_pwr.c | ||
stm32l5_pwr.h | ||
stm32l5_rcc.c | ||
stm32l5_rcc.h | ||
stm32l5_serial.c | ||
stm32l5_spi.c | ||
stm32l5_spi.h | ||
stm32l5_start.c | ||
stm32l5_start.h | ||
stm32l5_tim_lowerhalf.c | ||
stm32l5_tim.c | ||
stm32l5_tim.h | ||
stm32l5_timerisr.c | ||
stm32l5_uart.h | ||
stm32l5_uid.c | ||
stm32l5_uid.h | ||
stm32l5_userspace.c | ||
stm32l5_userspace.h | ||
stm32l5_waste.c | ||
stm32l5_waste.h | ||
stm32l5.h | ||
stm32l562xx_rcc.c |
This is a port of NuttX to the STM32L5 Family Used development boards are the Nucleo L552ZE-Q, and STM32L562E-DK. Most code is copied and adapted from the STM32L4 port. The only supported STM32L5 family currently is: ----------------------------------------------------------------- | NuttX config | Manual | Chips | STM32L5 | RM0438 | STM32L552xx and STM32L562xx ------------------------------------------------------------------ TODO list --------- Extensive testing. Only initial sniff tests have been done. A prober TODO list should be generated.