STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32F401RE Firmware update over Bluetooth

Posted on June 27, 2015 at 16:05Hi, i got a Nucleo F401RE Board and tried to update the flash with the internal bootloader, it works perfectly with USB<->RS232 bridge at 115200baud on UART1 (PA9,PA10), i got correct responses from bootloader, id, an...

sauer by Associate II
  • 465 Views
  • 2 replies
  • 0 kudos

CAN RX IRQ Question STM32F429

Posted on June 27, 2015 at 19:16 //---------------------------------------------------------------------------- setup CAN interface *----------------------------------------------------------------------------*/ void CAN_setup (uint32_t ctrl) { C...

Programming Bare STM32F0 Chip with Discovery SWD

Posted on June 18, 2015 at 12:57I have programmed many STM32F030C8 chips with Discovery board but the success rate while trying to program each Chip is very low. Some times after many tries the chip gets programmed and some times it does not work at...

audio_playback_and_record example add uart2

Posted on June 26, 2015 at 20:36audio_playback_and_record example add uart2 hello everyone. this week i start to dev in stm32f4discovery install cubeMX and get examples STM32Cube_FW_F4_v1.6.0 edditing audio_playback_and_record example  and add uart...

Simulation error for STM32F030P4 in keil compiler

Posted on June 26, 2015 at 23:06 Hello.... I want to simulation my program for STM32f030p4 in the keil compiler but simulator don't work correctly and it show this error. [img]http://s6.picofile.com/file/8195983818/error2.jpg[/img] would you please ...

dizin by Associate II
  • 341 Views
  • 1 replies
  • 0 kudos

SystemInit is not called as expected

Posted on June 26, 2015 at 10:35Dear community,if I look for the contents of the startup.s file of e.g. a STM32F373RB firmware then I recognize following lines:                 LDR     R0, =SystemInit   ; load a word into R0 e.g. the address of Syst...

jogerh by Associate II
  • 736 Views
  • 4 replies
  • 0 kudos

Overrun issue while echo with hyperterminal

Posted on June 26, 2015 at 10:44 Hello, Often I get an overrun error when a char is received from PC. uint8_t UART_GetC(uint8_t * const pbyRxByte); void Term_sending(void){ uint8_t byRxByte; do { while (UART_GetC(&byRxByte) == ...

astree by Associate II
  • 235 Views
  • 1 replies
  • 0 kudos

function pointer problem

Posted on June 26, 2015 at 13:27hi Im using keil developing on a stm32f4 discovery board. im trying to make a function pointer to be used by other modules. something like: extern void (*p)() ; void myfunc() {     printf(''function pointer''); } som...