How to set Display's parameters ?
In applications for STM32f746-disco board, the display's parameters in rk043fn48h.h are as the following:
/**
* @brief RK043FN48H Timing
*/
#define RK043FN48H_HSYNC ((uint16_t)41) /* Horizontal synchronization */
#define RK043FN48H_HBP ((uint16_t)13) /* Horizontal back porch */
#define RK043FN48H_HFP ((uint16_t)32) /* Horizontal front porch */
#define RK043FN48H_VSYNC ((uint16_t)10) /* Vertical synchronization */
#define RK043FN48H_VBP ((uint16_t)2) /* Vertical back porch */
#define RK043FN48H_VFP ((uint16_t)2) /* Vertical front porch */
/**
* @brief RK043FN48H frequency divider
*/
#define RK043FN48H_FREQUENCY_DIVIDER 5 /* LCD Frequency divider */While in the datasheet of the display, the timing parameters are stated as the following

You can check the datasheet from this link https://mikrocontroller.bplaced.net/wordpress/wp-content/uploads/2018/01/RK043FN48H-CT672B-V1.0.pdf
Could someone please explain the relation between timings stated in datasheet and the parameters configured in the code.
I need to find the correct values for another display. And I can't manage to understand the relation between datasheet and code values.
Please remember that the clock speed for the LTDC is set to 9.6 MHz.