38 lines
784 B
C
38 lines
784 B
C
|
/****************************************************************************
|
||
|
*
|
||
|
* Copy right: 2017-, Copyrigths of EigenComm Ltd.
|
||
|
* File name: servicemanager.h
|
||
|
* Description: EC718 servicemanager header file
|
||
|
* History: Rev1.0 2018-07-12
|
||
|
*
|
||
|
****************************************************************************/
|
||
|
#ifndef SUBSYS_SERVICEMANAGER_H
|
||
|
#define SUBSYS_SERVICEMANAGER_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "subsys.h"
|
||
|
#include "devicemanager.h"
|
||
|
|
||
|
// #define MAX_SER_NUM 20
|
||
|
|
||
|
// typedef struct
|
||
|
// {
|
||
|
// uint8_t* name;
|
||
|
// IpDev_t* ips;
|
||
|
// EextDev_t* ext;
|
||
|
// } Service_t;
|
||
|
|
||
|
// typedef struct
|
||
|
// {
|
||
|
// Service_t ser[MAX_SER_NUM];
|
||
|
// int8_t stat[MAX_SER_NUM];
|
||
|
// } SerTableT;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* SUBSYS_SERVICEMANAGER_H */
|