diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-22 22:07:48 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-22 23:47:09 -0400 |
commit | f08a0c5e93b92a6efa72d16a3d53968f3e54bf1c (patch) | |
tree | ef562213a7898d4c0dcc95c5fb0718c4f20769d9 /config | |
parent | 74de181e59fcc6f2d8d86190e73a1382810add8b (diff) | |
download | kutter-f08a0c5e93b92a6efa72d16a3d53968f3e54bf1c.tar.gz kutter-f08a0c5e93b92a6efa72d16a3d53968f3e54bf1c.tar.xz kutter-f08a0c5e93b92a6efa72d16a3d53968f3e54bf1c.zip |
lcd_st7920: Use a longer delay at the start of each command/data
It appears the st7920 requires a longer delay when switching from
command to data mode (and vice-versa). Slower MCUs don't show a
problem because the klipper command processing time results in a
sufficient delay. However, some of the faster MCUs can process
klipper commands fast enough that the next st7920 transfer is sent too
fast. Add an additional delay to account for this.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 4 | ||||
-rw-r--r-- | config/generic-re-arm.cfg | 5 |
2 files changed, 0 insertions, 9 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 1398f992..81231f75 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -539,10 +539,6 @@ #sid_pin: # The pins connected to an st7920 type lcd. These parameters must be # provided when using an st7920 display. -#chip_delay: -# This parameter specifies the internal command delay (in seconds) -# on st7920 displays. It may be necessary to increase this if the -# display shows garbled data. The default is 0.000020. # Custom thermistors (one may define any number of sections with a diff --git a/config/generic-re-arm.cfg b/config/generic-re-arm.cfg index 4a9c9fab..13a2c792 100644 --- a/config/generic-re-arm.cfg +++ b/config/generic-re-arm.cfg @@ -93,8 +93,3 @@ max_z_accel: 100 #cs_pin: P0.16 #sclk_pin: P0.15 #sid_pin: P0.18 -#chip_delay needs to be set to the below for the LCD to initialise correctly. -#chip_delay: .000040 - - - |