Skip to content

vthanhkhoa/MPU9250-stm32-yaw_angle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MPU9250-stm32-yaw_angle

  1. ERROR
  • Can't use 2 pointers to access a struct -> change pointer struct to struct variable
//in struct imu_9250
MPU9250_t *pt1_p;

(mpu9250->pt1_p->acc_x will be error)
We use:

//in struct imu_9250
MPU9250_t pt1_p;

(mpu9250->pt1_p->acc_x)

  • if connection isn't stable, change power to 5V (from 3V3) (maybe, or not :V)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages