Config Tree Entries


Here are some parameters for services config trees:

Data Connection Service

Configuration for the Data Connection Service.
The configuration of the Wi-Fi access point is stored in the configuration database of the dataConnectionService under the following path:

 dataConnectionService:/
     wifi/
         SSID<string> == TestSsid
         secProtocol<int> == 3
         passphrase<string> == Passw0rd
Note
The security protocol is one of the supported protocols defined in the le_wifiClient_SecurityProtocol_t enumerator.


SMS Inbox Service

Configuration for the SMS Inbox Service.
The configuration database for the SMS Inbox Service is stored in the smsInboxService config tree:

smsInboxService:/
    smsInbox/
        apps/
            appA<uint> = <# of messages>
            appB<uint> = <# of messages>

Each app have its own inbox, containing its own list of messages. The maximum number of messages is specified for each inbox. If the message box is not configured, a default number of 10 messages is applied (only for message boxes configured in le_smsInbox_mboxName[] area).

The application name is given by the API name provided into the Components.cdef, both must be the same.


AirVantage Service

Configuration for the AirVantage Connector Service.
The configuration database path for the modemActivityTimeout is:

/
    apps/
        avcService/
                 modemActivityTimeout

After an AirVantage session is started, if there's no activity from the modem within the timer interval, then LE_AVC_NO_UPDATE state will be returned to the app. However, this modem activity timeout can be overridden by setting an integer value at /apps/avcService/modemActivityTimeout. The modem activity timer is initialized only when the avcService starts. If a valid entry >0 is found, then it will be used instead of the default value of 20 seconds. The following steps should be used to set the modemActivtyTimeout.

config set /apps/avcService/modemActivityTimeout xx
app restart avcService
Note
Everytime a new value is written to modemActivityTimeout, the avcService needs to be restarted to read the new value.