![]() |
ISF
1.1
Intelligent Sensing Framework
|
00001 /* 00002 * 00003 * Copyright (c) 2013, Freescale Semiconductor, Inc. 00004 * 00005 */ 00006 /** 00007 * @file isf_hostproxyconfig.h 00008 * @brief This file defines the configuration types and enumeration for the Host Proxy. 00009 00010 * 00011 */ 00012 #ifndef ISF_HOSTPROXYCONFIG_H_ 00013 #define ISF_HOSTPROXYCONFIG_H_ 00014 00015 /*! @brief The enumeration for the user application proxy number. 00016 For example, to add an application called Fxlc95000 acceleration, a unique identification namely, APP_PROXY_NO_FXCL95000_ACCEL is 00017 created and inserted into this enumeration list. 00018 enum hp_AppProxyNO 00019 { 00020 APP_PROXY_NO_START, 00021 APP_PROXY_NO_FXCL95000_ACCEL = APP_PROXY_NO_START, 00022 APP_PROXY_NO_MAX, 00023 }; 00024 */ 00025 00026 enum hp_AppProxyNO 00027 { 00028 APP_PROXY_NO_START, 00029 APP_PROXY_NO_MAX = APP_PROXY_NO_START, 00030 }; 00031 00032 #endif /* ISF_HOSTPROXYCONFIG_H_ */