Skip to main content
KDuff.15
Associate II
October 1, 2018
Question

Help required with porting from STM32F767ZI to STM32F779NI

  • October 1, 2018
  • 2 replies
  • 668 views

I have code that runs on the NUCLEO-F767ZI kit and have recently obtained the STM32F7779I-EVAL kit. My program is very simple, it does not do any IO (yet), so I (perhaps naively) thought that just changing the processor type in my IAR Embedded Workbench project and rebuilding would be all that I needed to do to make it run on the new kit. But my application hangs up very early in startup. I think i t may be where I am setting up the system clocks. Anyone got any pointers for me?

    This topic has been closed for replies.

    2 replies

    Tesla DeLorean
    Guru
    October 1, 2018

    Those two boards use different crystals, one 8 MHz the other 25.

    Fix HSE_VALUE in stm32f7xx_hal_conf.h​ and then the PLL divider in the clock configuration code.

    Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
    KDuff.15
    KDuff.15Author
    Associate II
    October 9, 2018

    Thanks for that. Up and running now.