We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a23c0 commit dee2c64Copy full SHA for dee2c64
examples/f469disco-lcd-test.rs
@@ -122,14 +122,16 @@ pub const NT35510_DISPLAY_CONFIG: DisplayConfig = DisplayConfig {
122
};
123
124
// OTM8009A timing (B07 and earlier revisions)
125
+// Values from STMicroelectronics/stm32-otm8009a otm8009a.h
126
+// Tested on KoD KM-040TMP-02-0621 WVGA display
127
pub const OTM8009A_DISPLAY_CONFIG: DisplayConfig = DisplayConfig {
128
active_width: WIDTH as _,
129
active_height: HEIGHT as _,
- h_back_porch: 20,
- h_front_porch: 20,
130
- v_back_porch: 10,
131
- v_front_porch: 10,
132
- h_sync: 1,
+ h_back_porch: 34,
+ h_front_porch: 34,
+ v_back_porch: 15,
133
+ v_front_porch: 16,
134
+ h_sync: 2,
135
v_sync: 1,
136
frame_rate: 60,
137
h_sync_pol: true,
0 commit comments