cancel
Showing results for 
Search instead for 
Did you mean: 

How to convert STM32F769I-EVAL examples codes to STM32F769I-Discovery codes?

Anup
Associate
1 ACCEPTED SOLUTION

Accepted Solutions

Master the skill of porting between embedded platforms.

Best to start by understanding the board and hardware level differences of each platform. Review the schematics, look at the pin assignments.

As you port the specific peripherals of interest expect to adjust the pin level specifics to reflect those of the target board.

Make sure the clock sources are understood, and reflected in the defines, like HSE_VALUE, and within stm32f7xx_hal_conf.h for the project.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

View solution in original post

1 REPLY 1

Master the skill of porting between embedded platforms.

Best to start by understanding the board and hardware level differences of each platform. Review the schematics, look at the pin assignments.

As you port the specific peripherals of interest expect to adjust the pin level specifics to reflect those of the target board.

Make sure the clock sources are understood, and reflected in the defines, like HSE_VALUE, and within stm32f7xx_hal_conf.h for the project.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..