Mercurial > flash_v2
changeset 803:4ce5ea5be254
Still problems with CRT/LCD off.
| author | gthomas |
|---|---|
| date | Wed, 05 Mar 2003 17:04:02 +0000 |
| parents | 88ef969518a1 |
| children | c309f36b6de9 |
| files | packages/hal/powerpc/csb281/current/ChangeLog packages/hal/powerpc/csb281/current/src/lcd_support.c |
| diffstat | 2 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/hal/powerpc/csb281/current/ChangeLog +++ b/packages/hal/powerpc/csb281/current/ChangeLog @@ -1,3 +1,7 @@ +2003-02-26 Gary Thomas <gary@mlbassoc.com> + + * src/lcd_support.c (lcd_on): Enable/disable is still not stable. + 2003-02-25 Gary Thomas <gary@mlbassoc.com> * src/lcd_support.c (lcd_on): Fix enable/disable code.
--- a/packages/hal/powerpc/csb281/current/src/lcd_support.c +++ b/packages/hal/powerpc/csb281/current/src/lcd_support.c @@ -100,6 +100,7 @@ lcd_fb(int row, int col) void lcd_on(bool enable) { +#if 0 // The on/off code is not stable static bool on = false; if (enable) { @@ -111,6 +112,7 @@ lcd_on(bool enable) (*lcd.off)(); on = false; } +#endif } // Initialize LCD hardware
