Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yaw value is oscillating and by full rotation don't show 360 degree #200

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d104fa3
Hacking this into an Arduino library
Jun 1, 2016
1b85b4a
Mostly functional, but gross
Jun 2, 2016
1598a6d
Got things separated and working
Jul 19, 2016
069cc0a
Lil cleaner
Jul 19, 2016
4cc172f
removed unnecessary commented out code
Jul 21, 2016
b9efe8f
Removed old comments
Jul 26, 2016
e1c388c
Updated to match code
Jul 26, 2016
d6eaded
-m
Jul 26, 2016
5ad429e
Updated README
Jul 26, 2016
5543784
added missing myIMUs
Sep 2, 2016
ed3eafc
Correct use of FS parameter
eric-wieser Nov 3, 2016
9ad3d28
Updated links to product image
BrentWilkins Jan 3, 2017
bc4416f
Merge branch 'master' of https://github.com/sparkfun/MPU-9250_Breakou…
Jan 3, 2017
77f8916
Added magnetometer calibration routine and cleaned up some things
Jan 4, 2017
018dd45
Added SPI capabilities. WARNING: Not reading from AK8963 over SPI yet.
Jan 10, 2017
76045e8
Added a sketch to debug SPI. Seems to work as of this commit
Feb 3, 2017
113e836
Added in working magnetometer config and WHOAMI reading. Saving unfin…
Feb 7, 2017
69eb832
Update MPU9250.h
BennehBoy Feb 27, 2017
01bfca8
Fixed addresses
oclyke Aug 1, 2018
4fbe125
Added support for additional SPI or I2C ports
oclyke Aug 1, 2018
92f6d45
Updated examples
oclyke Aug 1, 2018
2bc252b
Merge branch 'master' into master
oclyke Aug 1, 2018
63d7af4
Merge pull request #2 from BennehBoy/master
oclyke Aug 1, 2018
0557964
Merge branch 'master' into patch-2
oclyke Aug 1, 2018
4de7a47
Merge pull request #1 from eric-wieser/patch-2
oclyke Aug 1, 2018
d2e0a9b
Added unit tester for I2C
oclyke Aug 1, 2018
8f7866f
Fixed address definition problem after merge
oclyke Aug 2, 2018
c949409
rename
oclyke Aug 2, 2018
e722caf
Tried to extend SPI mode to be able to access magnetometer
oclyke Aug 6, 2018
77d2d2f
Add note on MPU-9250 DMP library.
jimblom Nov 9, 2018
6b74349
Don't enable SPI bus when SPI mode is disabled.
lkolbly Nov 10, 2018
bfb5b96
Merge pull request #3 from lkolbly/master
nseidle Dec 18, 2018
850217e
Lib ver roll
nseidle Dec 18, 2018
ea379ce
Lib ver roll
nseidle Dec 18, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
204 changes: 204 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
#################
## SparkFun Useful stuff
#################

## AVR Development
*.eep
*.elf
*.lst
*.lss
*.sym
*.d
*.o
*.srec
*.map

## Notepad++ backup files
*.bak

## BOM files
*bom*

#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#############
## Eagle
#############

# Ignore the board and schematic backup files
*.b#?
*.s#?


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
.builds
*.dotCover

## TODO: If you have NuGet Package Restore enabled, uncomment this
#packages/

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp

# ReSharper is a .NET coding add-in
_ReSharper*

# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish

# Others
[Bb]in
[Oo]bj
sql
TestResults
*.Cache
ClientBin
stylecop.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML


############
## Windows
############

# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


#############
## Mac OS
#############

.DS_Store


#############
## Linux
#############

# backup files (*.bak on Win)
*~


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg
Loading