diff options
-rw-r--r-- | plugins/modem.conf | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/plugins/modem.conf b/plugins/modem.conf index 937cddff..2a3835a8 100644 --- a/plugins/modem.conf +++ b/plugins/modem.conf @@ -4,18 +4,14 @@ # e.g. /etc/ofono/modem.conf # # Each group is parsed as a modem device -# Each group shall contain the following keys: -# Driver = <driver string>, e.g. generic_at, phonesim, mbm, g1 -# Type = tcp | unix | tty -# InitString = <init string to send to device>, e.g. ATZ +# Each group shall at least define the driver +# Driver = <driver string>, e.g. phonesim, mbm, g1, etc. # -# If Type is tcp, the following keys are available: +# If driver is phonesim, the following keys are required: # Address = <valid IPv4 address format> +# Port = <valid TCP port> # -# If Type is unix: -# Address = UNIX path, prefixed by x00 for anonymous paths -# -# If Type is tty: +# If driver is mbm or g1, the following key is required # Device = <device path> # Sample for using phone simulator @@ -24,16 +20,7 @@ #Address=127.0.0.1 #Port=12345 -#Sample for OpenMoko calypso -#[calypso] -#Driver=generic_at -#Type=tty -#Device=/dev/ttySAC0 -#InitString=AT+CFUN=1 -#TimeoutCommand=\r -#TimeoutInterval=5 - -#Sample for Android/HTC G1 +# Sample for Android/HTC G1 #[g1] #Driver=g1 #Device=/dev/smd0 |