Skip to content

Commit bd1878d

Browse files
committed
initial commit
0 parents  commit bd1878d

File tree

2,693 files changed

+1291513
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,693 files changed

+1291513
-0
lines changed

Drivers/BSP/Components/Common/Release_Notes.html

+246
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
/**
2+
******************************************************************************
3+
* @file accelerometer.h
4+
* @author MEMS Application Team
5+
* @version V3.0.0
6+
* @date 12-August-2016
7+
* @brief This header file contains the functions prototypes for the
8+
* accelerometer driver
9+
******************************************************************************
10+
* @attention
11+
*
12+
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
13+
*
14+
* Redistribution and use in source and binary forms, with or without modification,
15+
* are permitted provided that the following conditions are met:
16+
* 1. Redistributions of source code must retain the above copyright notice,
17+
* this list of conditions and the following disclaimer.
18+
* 2. Redistributions in binary form must reproduce the above copyright notice,
19+
* this list of conditions and the following disclaimer in the documentation
20+
* and/or other materials provided with the distribution.
21+
* 3. Neither the name of STMicroelectronics nor the names of its contributors
22+
* may be used to endorse or promote products derived from this software
23+
* without specific prior written permission.
24+
*
25+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
29+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
33+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35+
*
36+
******************************************************************************
37+
*/
38+
39+
/* Define to prevent recursive inclusion -------------------------------------*/
40+
#ifndef __ACCELEROMETER_H
41+
#define __ACCELEROMETER_H
42+
43+
#ifdef __cplusplus
44+
extern "C" {
45+
#endif
46+
47+
48+
49+
/* Includes ------------------------------------------------------------------*/
50+
#include "sensor.h"
51+
52+
/** @addtogroup BSP BSP
53+
* @{
54+
*/
55+
56+
/** @addtogroup COMPONENTS COMPONENTS
57+
* @{
58+
*/
59+
60+
/** @addtogroup COMMON COMMON
61+
* @{
62+
*/
63+
64+
/** @addtogroup ACCELEROMETER ACCELEROMETER
65+
* @{
66+
*/
67+
68+
/** @addtogroup ACCELEROMETER_Public_Types ACCELEROMETER Public types
69+
* @{
70+
*/
71+
72+
/**
73+
* @brief ACCELEROMETER driver structure definition
74+
*/
75+
typedef struct
76+
{
77+
DrvStatusTypeDef ( *Init ) ( DrvContextTypeDef* );
78+
DrvStatusTypeDef ( *DeInit ) ( DrvContextTypeDef* );
79+
DrvStatusTypeDef ( *Sensor_Enable ) ( DrvContextTypeDef* );
80+
DrvStatusTypeDef ( *Sensor_Disable ) ( DrvContextTypeDef* );
81+
DrvStatusTypeDef ( *Get_WhoAmI ) ( DrvContextTypeDef*, uint8_t* );
82+
DrvStatusTypeDef ( *Check_WhoAmI ) ( DrvContextTypeDef* );
83+
DrvStatusTypeDef ( *Get_Axes ) ( DrvContextTypeDef*, SensorAxes_t* );
84+
DrvStatusTypeDef ( *Get_AxesRaw ) ( DrvContextTypeDef*, SensorAxesRaw_t* );
85+
DrvStatusTypeDef ( *Get_Sensitivity ) ( DrvContextTypeDef*, float* );
86+
DrvStatusTypeDef ( *Get_ODR ) ( DrvContextTypeDef*, float* );
87+
DrvStatusTypeDef ( *Set_ODR ) ( DrvContextTypeDef*, SensorOdr_t );
88+
DrvStatusTypeDef ( *Set_ODR_Value ) ( DrvContextTypeDef*, float );
89+
DrvStatusTypeDef ( *Get_FS ) ( DrvContextTypeDef*, float* );
90+
DrvStatusTypeDef ( *Set_FS ) ( DrvContextTypeDef*, SensorFs_t );
91+
DrvStatusTypeDef ( *Set_FS_Value ) ( DrvContextTypeDef*, float );
92+
DrvStatusTypeDef ( *Get_Axes_Status ) ( DrvContextTypeDef*, uint8_t* );
93+
DrvStatusTypeDef ( *Set_Axes_Status ) ( DrvContextTypeDef*, uint8_t* );
94+
DrvStatusTypeDef ( *Read_Reg ) ( DrvContextTypeDef*, uint8_t, uint8_t* );
95+
DrvStatusTypeDef ( *Write_Reg ) ( DrvContextTypeDef*, uint8_t, uint8_t );
96+
DrvStatusTypeDef ( *Get_DRDY_Status ) ( DrvContextTypeDef*, uint8_t* );
97+
} ACCELERO_Drv_t;
98+
99+
/**
100+
* @brief ACCELEROMETER data structure definition
101+
*/
102+
typedef struct
103+
{
104+
void *pComponentData; /* Component specific data. */
105+
void *pExtData; /* Other data. */
106+
} ACCELERO_Data_t;
107+
108+
/**
109+
* @}
110+
*/
111+
112+
/**
113+
* @}
114+
*/
115+
116+
/**
117+
* @}
118+
*/
119+
120+
/**
121+
* @}
122+
*/
123+
124+
/**
125+
* @}
126+
*/
127+
128+
#ifdef __cplusplus
129+
}
130+
#endif
131+
132+
#endif /* __ACCELEROMETER_H */
133+
134+
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
+152
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
/**
2+
******************************************************************************
3+
* @file component.h
4+
* @author MEMS Application Team
5+
* @version V3.0.0
6+
* @date 12-August-2016
7+
* @brief This header file contains the functions prototypes common for all
8+
* drivers
9+
******************************************************************************
10+
* @attention
11+
*
12+
* <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
13+
*
14+
* Redistribution and use in source and binary forms, with or without modification,
15+
* are permitted provided that the following conditions are met:
16+
* 1. Redistributions of source code must retain the above copyright notice,
17+
* this list of conditions and the following disclaimer.
18+
* 2. Redistributions in binary form must reproduce the above copyright notice,
19+
* this list of conditions and the following disclaimer in the documentation
20+
* and/or other materials provided with the distribution.
21+
* 3. Neither the name of STMicroelectronics nor the names of its contributors
22+
* may be used to endorse or promote products derived from this software
23+
* without specific prior written permission.
24+
*
25+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
29+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
33+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35+
*
36+
******************************************************************************
37+
*/
38+
39+
/* Define to prevent recursive inclusion -------------------------------------*/
40+
#ifndef __COMPONENT_H
41+
#define __COMPONENT_H
42+
43+
#ifdef __cplusplus
44+
extern "C" {
45+
#endif
46+
47+
48+
49+
/* Includes ------------------------------------------------------------------*/
50+
51+
#include <stdint.h>
52+
53+
/** @addtogroup BSP BSP
54+
* @{
55+
*/
56+
57+
/** @addtogroup COMPONENTS COMPONENTS
58+
* @{
59+
*/
60+
61+
/** @addtogroup COMMON COMMON
62+
* @{
63+
*/
64+
65+
/** @addtogroup COMPONENT COMPONENT
66+
* @{
67+
*/
68+
69+
/** @addtogroup COMPONENT_Public_Constants Public constants
70+
* @{
71+
*/
72+
73+
/**
74+
* @brief NULL pointer definition
75+
*/
76+
#ifndef NULL
77+
#define NULL ( void * )0
78+
#endif
79+
80+
/**
81+
* @}
82+
*/
83+
84+
/** @addtogroup COMPONENT_Public_Types COMPONENT Public Types
85+
* @{
86+
*/
87+
88+
/**
89+
* @brief Component's Context structure definition.
90+
*/
91+
typedef struct
92+
{
93+
94+
/* Identity */
95+
uint8_t who_am_i;
96+
97+
/* Configuration */
98+
uint8_t address; /* Sensor I2C address (NOTE: Not a unique sensor ID). */
99+
uint8_t instance; /* Sensor instance (NOTE: Sensor ID unique only within its class). */
100+
uint8_t isInitialized; /* Sensor setup done. */
101+
uint8_t isEnabled; /* Sensor ON. */
102+
uint8_t isCombo; /* Combo sensor (component consists of more sensors). */
103+
104+
/* Pointer to the Data */
105+
void *pData;
106+
107+
/* Pointer to the Virtual Table */
108+
void *pVTable;
109+
/* Pointer to the Extended Virtual Table */
110+
void *pExtVTable;
111+
} DrvContextTypeDef;
112+
113+
114+
115+
/**
116+
* @brief Component's Status enumerator definition.
117+
*/
118+
typedef enum
119+
{
120+
COMPONENT_OK = 0,
121+
COMPONENT_ERROR,
122+
COMPONENT_TIMEOUT,
123+
COMPONENT_NOT_IMPLEMENTED
124+
} DrvStatusTypeDef;
125+
126+
/**
127+
* @}
128+
*/
129+
130+
/**
131+
* @}
132+
*/
133+
134+
/**
135+
* @}
136+
*/
137+
138+
/**
139+
* @}
140+
*/
141+
142+
/**
143+
* @}
144+
*/
145+
146+
#ifdef __cplusplus
147+
}
148+
#endif
149+
150+
#endif /* __COMPONENT_H */
151+
152+
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

0 commit comments

Comments
 (0)