diff options
Diffstat (limited to 'plugins/generic_at.conf')
-rw-r--r-- | plugins/generic_at.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/generic_at.conf b/plugins/generic_at.conf new file mode 100644 index 00000000..acbb7865 --- /dev/null +++ b/plugins/generic_at.conf @@ -0,0 +1,28 @@ +# This is a sample configuration file for the generic_at plugin +# It should be installed in your ofono sysconfdir, e.g. +# /etc/ofono/generic_at.conf +# Each group is parsed as a device +# Each group can contain the following keys: +# 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> + +#[phonesim] +#Type=tcp +#Address=127.0.0.1 +#Port=12345 + +#Sample TTY for OpenMoko calypso +#Type=tty +#Device=/dev/ttySAC0 +#InitString=AT+CFUN=1 +#TimeoutCommand=\r +#TimeoutInterval=5 |