j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: rsmith Date: 2007-09-28 00:11:13 +0200 (Fri, 28 Sep 2007) New Revision: 641
Modified: dev/olpc/kb3700/ecio.fth Log: - Rename dcon-enable dcon-disable to power on/off to prevent - confusion with the words in the dcon device
Modified: dev/olpc/kb3700/ecio.fth =================================================================== --- dev/olpc/kb3700/ecio.fth 2007-09-27 22:06:12 UTC (rev 640) +++ dev/olpc/kb3700/ecio.fth 2007-09-27 22:11:13 UTC (rev 641) @@ -147,8 +147,8 @@ : wlan-on ( -- ) 1 h# 23 ec-cmd-b! ; : wlan-wake ( -- ) h# 24 ec-cmd ; : wlan-reset ( -- ) h# 25 ec-cmd ; -: dcon-disable ( -- ) 0 h# 26 ec-cmd-b! ; -: dcon-enable ( -- ) 1 h# 26 ec-cmd-b! ; +: dcon-power-off ( -- ) 0 h# 26 ec-cmd-b! ; +: dcon-power-on ( -- ) 1 h# 26 ec-cmd-b! ; : reset-ec-warm ( -- ) h# 27 ec-cmd ; : reset-ec ( -- ) h# 28 ec-cmd ; : write-protect-fw ( -- ) h# 29 ec-cmd ;