STM32F030 hardfault only during debug mode
Hi, I'm getting a hard fault on MX_TIM1_Init() but only during debug sessions. When I set a breakpoint after initialization, then I can step through and everything works. Why is this happening?
Hi, I'm getting a hard fault on MX_TIM1_Init() but only during debug sessions. When I set a breakpoint after initialization, then I can step through and everything works. Why is this happening?
Hello,I am using a Nucleo H755ZIQ development board and want to test the network communication with the M4 core in combination with FreeRTOS and LWIP, but I am running into a problem.For the setup process I have used the network tutorial from "Adam B...
I am confused: I want to have 1ms AZURE RTOS tick timer - but no idea how to set.What I see:AZURE RTOS defines 10ms tick timer (UX_PERIOD_RATE, TX_TIMER_TICK_PER_SECOND)I see as well, when using tx_thread_sleep(1000); - it sleeps 10 second (not 1) - ...
Hello,I've recently been using Thread application examples like "Thread_FTD_Coap_Multicast", but when I tried adding other features such as ADC, I encountered errors due to redundancy caused by too many files.I'm wondering how to start a new clean pr...
Hi,it's possible to swap Tim1 and Tim2 to use the example N-pulse waveform generation application example - part 1? Bests Pedahl
Hi all,I am designing an application on a STM32L431. I need to consume the least amount of power. The MCU will have to use the CAN module both in transmit and receive mode. The reference manual does not give too much details on how the lower power mo...
I have a NUCLEO-H723ZG.From the STM32 examples, in the LwIP_UDP_Echo_Server/STM32CubeIDE/STM32H723ZGTX_FLASH.ld file, we have: .lwip_sec (NOLOAD) : { . = ABSOLUTE(0x30000000); *(.RxDecripSection) . = ABSOLUTE(0x30000200); *(.TxD...
Hi,My thread starts working with the features I mentioned below: panID = 0x2222U; channelNB = 12U; networkKey = (otNetworkKey) { .m8 = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF} }; ...
Hello There, I'm working on an app utilizing STM32H7A3 with CMSIS-OS2.I'm facing a problem with osDelay(). Most of the time it returns too early than the actual delay. While HAL_Delay() always works fine.I have debugged osDelay(3500) with oscilloscop...
I have the following code that I call from a freertos task scheduled with a period of 100 ms.It reads the voltage applied to a pin and return the voltage value as a float. float pinin_pv(void) { /* Return the pin voltage in the interval [0, PIN_VOL...