sensor_thread.h 637 B

1234567891011121314151617181920
  1. #ifndef __SENSOR_THREAD_H__
  2. #define __SENSOR_THREAD_H__
  3. #include "sensor_sdr.h"
  4. #include "sensor_tbl.h"
  5. #include <stdint.h>
  6. #include "bmc_type.h"
  7. #include "bmc_conf.h"
  8. #include "bmc_main.h"
  9. void *sensor_main(void *args);
  10. sensor_tbl_t *getSensorDev(uint8_t sensorNum);
  11. SDRRec_T *getSensorSdr(uint8_t sensorNum);
  12. int GetSDRRepositoryInfo (_NEAR_ INT8U* pReq, INT8U ReqLen, _NEAR_ INT8U* pRes,_NEAR_ int BMCInst);
  13. int GetSDR (_NEAR_ INT8U* pReq, INT8U ReqLen, _NEAR_ INT8U* pRes,_NEAR_ int BMCInst);
  14. int ReserveSDRRepository (_NEAR_ INT8U* pReq, INT8U ReqLen, _NEAR_ INT8U* pRes,_NEAR_ int BMCInst);
  15. #endif /* __SENSOR_THREAD_H__ */