Skip to content

Commit 5ae1a07

Browse files
authored
Merge pull request #106 from mchodzikiewicz/fix/stm32f7disco-lcd-params
Fix LCD timings for F746G disco example
2 parents 01ea959 + 7951371 commit 5ae1a07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/stm32f7disco-screen/screen.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ pub const DISCO_SCREEN_CONFIG: DisplayConfig = DisplayConfig {
2020
active_height: 272,
2121
h_back_porch: 13,
2222
h_front_porch: 30,
23-
h_sync: 30,
23+
h_sync: 41,
2424
v_back_porch: 2,
2525
v_front_porch: 2,
2626
v_sync: 10,
2727
frame_rate: 60,
2828
h_sync_pol: false,
2929
v_sync_pol: false,
30-
no_data_enable_pol: true,
30+
no_data_enable_pol: false,
3131
pixel_clock_pol: false,
3232
};
3333

0 commit comments

Comments
 (0)