From: Jérémie D. <Ba...@us...> - 2010-03-07 22:57:56
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "krobot". The branch, master has been updated via 898dd1a410781431143f0c21e6158de5c4b7624c (commit) from 8902813f33971db1de012160557c87b34a52e8c7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 898dd1a410781431143f0c21e6158de5c4b7624c Author: Jérémie Dimino <je...@di...> Date: Sun Mar 7 23:56:12 2010 +0100 add missing interface for the LCD ----------------------------------------------------------------------- Changes: diff --git a/PC_Mainboard/driver/driver.ml b/PC_Mainboard/driver/driver.ml index e1472f0..121618b 100644 --- a/PC_Mainboard/driver/driver.ml +++ b/PC_Mainboard/driver/driver.ml @@ -79,7 +79,7 @@ struct module Unsafe = DBus_exports.LCD(OBus)(struct let get dev = dev.card end) - OL_interface(OBus) "fr.krobot.Device.LCD" + OL_interface(OBus) "fr.krobot.Device.LCD" as interface OL_method SetLCD : string list -> unit = fun dev lines -> if List.length lines > 4 || List.exists (fun line -> String.length line > 20) lines then @@ -101,7 +101,7 @@ struct let make card path = let dev = { - obus = OBus.make ~interfaces:[Unsafe.interface] path; + obus = OBus.make ~interfaces:[Unsafe.interface; interface] path; card = card; } in return dev hooks/post-receive -- krobot |