diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-09-02 15:18:10 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-09-02 15:18:10 -0700 |
commit | e555445f2392ec9559de03f519d13541163df049 (patch) | |
tree | 3a026ad3cd240adf8994ba92586c1e70e4192d3b /plugins | |
parent | 24d1d0ee167dd14a7167c511d337db72340ce6a1 (diff) | |
download | ofono-e555445f2392ec9559de03f519d13541163df049.tar.bz2 |
Add example for modem.conf and install it if requested
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/modem.conf | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/plugins/modem.conf b/plugins/modem.conf new file mode 100644 index 00000000..0c1b1023 --- /dev/null +++ b/plugins/modem.conf @@ -0,0 +1,41 @@ +# This is a sample file for the static modem configuration +# +# It should be installed in your oFono system directory, +# 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, mbm, g1 +# Type = tcp | unix | tty +# InitString = <init string to send to device>, e.g. ATZ +# +# If Type is tcp, the following keys are available: +# Address = <valid IPv4 address format> +# +# If Type is unix: +# Address = UNIX path, prefixed by x00 for anonymous paths +# +# If Type is tty: +# Device = <device path> + +# Sample for using phone simulator +#[phonesim] +#Driver=generic_at +#Type=tcp +#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 +#[g1] +#Driver=g1 +#Type=tty +#Device=/dev/smd0 |