Posted on May 17, 2011 at 13:10I use freeRTOS w/ the STM32 as well, I wasn't aware of the dual stack support in it though. Let me know what you find out.
Posted on May 17, 2011 at 13:06Quote:On 12-03-2009 at 21:47, Anonymous wrote: Would it be possible to move/fix the definition of the HSE frequency. I'm using RIDE and it means if I want to use the built in library I have to recompile it for every pr...
Posted on May 17, 2011 at 13:01In stm32f10x_can.c under the CAN_TRANSMIT() func: lines 406-415 Code:u8 CAN_Transmit(CanTxMsg* TxMessage) { u8 TransmitMailbox = 0; /* Check the parameters */ assert_param(IS_CAN_STDID(TxMessage->StdId)); assert_pa...
Posted on May 17, 2011 at 13:00Quote:On 28-01-2009 at 04:39, Anonymous wrote: are you setup NVIC for this source? for ex. in this way: NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQChannel; NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;...
Posted on May 17, 2011 at 13:00I have a Hall Effect Sensor Connected to pin B0. The interrupt does not work when falling edge applied (Falling Edge signal verified by scope). the EXTI_GenerateSWInterrupt(EXTI_Line0); function does generate the inter...