Personal fork of the library for direct control instead of library control
Dependents: Thesis_Rotating_Platform
Fork of X_NUCLEO_IHM01A1 by
Diff: Components/Common/component.h
- Revision:
- 22:ed3a6990a6eb
- Parent:
- 0:2887415a46cd
--- a/Components/Common/component.h Tue Jan 19 15:57:24 2016 +0000 +++ b/Components/Common/component.h Tue Feb 09 10:53:31 2016 +0000 @@ -37,10 +37,10 @@ */ -/* Prevent recursive inclusion -----------------------------------------------*/ +/* Define to prevent recursive inclusion -------------------------------------*/ -#ifndef __COMPONENT_H__ -#define __COMPONENT_H__ +#ifndef __COMPONENT_H +#define __COMPONENT_H /* Types ---------------------------------------------------------------------*/ @@ -75,7 +75,7 @@ /* -----------------------------------------------------------------------*/ /* Pointer to the Extended Virtual Table. */ void *pExtVTable; -} DrvContextTypeDef; +} Handle_t; /** * @brief Component's Status enumerator definition. @@ -86,6 +86,8 @@ COMPONENT_ERROR, COMPONENT_TIMEOUT, COMPONENT_NOT_IMPLEMENTED -} DrvStatusTypeDef; +} Status_t; -#endif \ No newline at end of file +#endif /* __COMPONENT_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/