1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #11152 from ibr-cm/petersen/l3g4200d-fix-pr

l3g4200d: Fixes conversion bug
This commit is contained in:
Dylan Laduranty 2019-04-05 15:49:13 +02:00 committed by GitHub
commit a81dbf0037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,8 +95,8 @@ typedef struct {
* @brief Device descriptor for L3G4200D sensors
*/
typedef struct {
l3g4200d_params_t params; /**< device initialization parameters */
int scale; /**< internal scaling factor to normalize results */
l3g4200d_params_t params; /**< device initialization parameters */
int32_t scale; /**< internal scaling factor to normalize results */
} l3g4200d_t;
/**