Denis Tolstov
Denis Tolstov
> I wasn't aware that this check is also present there. > > Shall I drop this PR? The check in `irq_dispatch()` only calls `kmm_checkforcorruption()` on IRQ exits to check...
> We can refine how to trigger the check. But irq_dispatch is the best place to get the reliable result since if kmm_checkforcorruption report the error, we can ascertain that...
stm32f072-disco:btimer defconfig diff with stm32f072-disco:nsh defconfig: I enabled POSIX_TIMERS, PTHREAD, BUILTIN, EXAMPLES_TIMER, STM32F0L0G0_TIM7, TIMER, TIMER_ARCH. Board timer initialization: ```diff diff --git a/boards/arm/stm32f0l0g0/stm32f072-discovery/src/stm32_bringup.c b/boards/arm/stm32f0l0g0/stm32f072-discovery/src/stm32_bringup.c index f52f9d545..fb9981ba4 100644 --- a/boards/arm/stm32f0l0g0/stm32f072-discovery/src/stm32_bringup.c +++ b/boards/arm/stm32f0l0g0/stm32f072-discovery/src/stm32_bringup.c...
stm32f072-disco crash log, stackdump and backtrace: ``` ABCDF NuttShell (NSH) NuttX-10.3.0 nsh> uname -a NuttX 10.3.0 098866c45-dirty Jul 15 2022 15:38:41 arm stm32f072-discovery nsh> free total used free largest nused...
Milandr mdr32f1qi stackdump/backtrace: ``` nsh> ps PID GROUP PRI POLICY TYPE NPX STATE EVENT SIGMASK STACK USED FILLED COMMAND 0 0 0 FIFO Kthread N-- Ready 00000000 001000 000368 36.8%...
It's definitely "-fomit-frame-pointers" option and not "-foptimize-sibling-calls" option. I fiddled with CFLAGS in Toolchain.defs and moved the -fno-optimize-sibling-calls two lines down to the other branch. `-Os -fno-optimize-sibling-calls` combination has no...
@acassis I could verify timers on STM32F429I-disco board sometime next week, though it's armv7e-m. I don't have access to any STM32F1-based boards. Milandr has a line of MCUs produced since...
@TregliaRaphael Why are you using commit from master? Have you tried checking out releases/10.3 branch for both nuttx.git and apps.git? Other than that I can only recommend checking GPIO pin...
@acassis I happen to have access to a similar board. I tested `stm32f429i-disco:usbnsh` which has USB FS 1.5 Mbps via USB-HS internal PHY (the other pins conflict with SDRAM), and...
Care to create a pull request or close if already fixed? I fail to see your exact edits as there's no formatted diff. An why do you think it's appropriate...