ISF  1.1
Intelligent Sensing Framework
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines
User/Source/isf_hostproxyconfig.c File Reference

This file defines the host configuration structure. More...

#include "isf_hostproxy.h"
#include "isf_hostproxyconfig.h"

Go to the source code of this file.

Variables

hp_Config_t proxyConfigTable []
 The table defines the Host Proxy configuration. If the user application registers with the Host Proxy, the configuration table should be updated with the proxy instance. For example, if a FXLC95000 accelerometer application registers with the Host Proxy, the proxy number and the user application specific configuration instance should be inserted into the proxy configuration table. hp_Config_t proxyConfigTable[] = { { .proxyNo = APP_PROXY_NO_FXCL95000_ACCEL, .appConfig = &fxlc95000Config } }; uint8 numberOfProxy = sizeof(proxyConfigTable)/sizeof(hp_Config_t);.
uint8 numberOfProxy = 0
 The number of proxy instances registered with the Host Proxy.

Detailed Description

This file defines the host configuration structure.

Definition in file isf_hostproxyconfig.c.


Variable Documentation

The number of proxy instances registered with the Host Proxy.

Definition at line 38 of file isf_hostproxyconfig.c.

Initial value:
 {
                                {
                                .proxyNo = 0, 
                                .appConfig = NULL
                                }
}

The table defines the Host Proxy configuration. If the user application registers with the Host Proxy, the configuration table should be updated with the proxy instance. For example, if a FXLC95000 accelerometer application registers with the Host Proxy, the proxy number and the user application specific configuration instance should be inserted into the proxy configuration table. hp_Config_t proxyConfigTable[] = { { .proxyNo = APP_PROXY_NO_FXCL95000_ACCEL, .appConfig = &fxlc95000Config } }; uint8 numberOfProxy = sizeof(proxyConfigTable)/sizeof(hp_Config_t);.

Definition at line 30 of file isf_hostproxyconfig.c.