0% found this document useful (0 votes)
41 views

Reloadsensor

This header file defines functions for initializing, starting, and stopping the capture of reload sensor data, as well as functions for responding to events from reload capture and one-shot modes. It includes header files for event definitions, the event framework, and boolean type definitions. Functions are declared for initializing, starting, and stopping both continuous reload capture and one-shot modes, as well as functions for responding to events from these modes and initializing IRPWM output.

Uploaded by

api-397492879
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views

Reloadsensor

This header file defines functions for initializing, starting, and stopping the capture of reload sensor data, as well as functions for responding to events from reload capture and one-shot modes. It includes header files for event definitions, the event framework, and boolean type definitions. Functions are declared for initializing, starting, and stopping both continuous reload capture and one-shot modes, as well as functions for responding to events from these modes and initializing IRPWM output.

Uploaded by

api-397492879
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

/****************************************************************************

Header file for ReloadSensor


based on the Gen 2 Events and Services Framework

****************************************************************************/

#ifndef ReloadSensor_H
#define ReloadSensor_H

// Event Definitions
#include "ES_Configure.h" /* gets us event definitions */
#include "ES_Framework.h" /* gets ES_Framework */
#include "ES_Types.h" /* gets bool type for returns */

// Public Function Prototypes, these functions will be used in other service


void InitReloadCapture(void);
void StartReloadCapture(void);
void StopReloadCapture(void);
void ReloadCaptureResponse(void);

void InitReloadOneShot( void );


void StartReloadOneShot( void );
void StopReloadOneShot(void);
void ReloadOneShotIntResponse(void);

void InitIRPWM(void);

#endif /* ReloadSensor_H */

You might also like