• STM32 CAN simulation problem
    Use source: #include "stm32f10x.h" void USB_HP_CAN1_TX_IRQHandler() { if(CAN1->TSR & CAN_TSR_RQCP0) CAN1->TSR |= CAN_TSR_RQCP0; if(CAN1->TSR & CAN_TSR_RQCP1) CAN1->TSR |= CAN_TSR_RQCP1; if...
  • STM32 CAN simulation problem
    Use source: #include "stm32f10x.h" void USB_HP_CAN1_TX_IRQHandler() { if(CAN1->TSR & CAN_TSR_RQCP0) CAN1->TSR |= CAN_TSR_RQCP0; if(CAN1->TSR & CAN_TSR_RQCP1) CAN1->TSR |= CAN_TSR_RQCP1; if...
  • STM32 Connectivity Line in System Viewer
    Hello First, im using MDK ARM Std. 4.20. In our project we have a STM32F107VC (M3, Connectivity Line) and i am currently adapting the STM32_Init.c to be more useful (PLL2+PLL3 settings, more peripherals...
  • STM32 Connectivity Line in System Viewer
    Hello First, im using MDK ARM Std. 4.20. In our project we have a STM32F107VC (M3, Connectivity Line) and i am currently adapting the STM32_Init.c to be more useful (PLL2+PLL3 settings, more peripherals...
  • passing array values to in line assembly
    i have problem with passing array values from c to inline assembly pls help me &also reciving values from inlineassembly