From 08312e7a09f33e967a1448d83ce134f15170358f Mon Sep 17 00:00:00 2001 From: Georg Lukas Date: Wed, 22 Apr 2015 16:10:31 +0200 Subject: [PATCH] API: fix SERVICE.ONCE to ONCE, tnx. RN6LJG --- doc/API.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/API.mdwn b/doc/API.mdwn index 4544ea5..5ea3cc8 100644 --- a/doc/API.mdwn +++ b/doc/API.mdwn @@ -19,7 +19,7 @@ Furthermore, it is possible to influence APRSdroid with the following Intents ("actions"): * `SERVICE` - start APRSdroid's tracking service - * `SERVICE.ONCE` - send one position packet and stop + * `ONCE` - send one position packet and stop * `SERVICE_STOP` - stop APRSdroid's tracking service * `SEND_PACKET` - send a (raw) APRS packet @@ -161,10 +161,10 @@ the action description, and must be delivered using The individual actions are described in the following. -### SERVICE / SERVICE.ONCE +### SERVICE / ONCE Start the APRSdroid tracking service for an indeterminate runtime -(`SERVICE`) or for one position transmission (`SERVICE.ONCE`). +(`SERVICE`) or for one position transmission (`ONCE`). // launch APRSdroid tracker Intent i = new Intent("org.aprsdroid.app.SERVICE");