Skip to content

Commit

Permalink
Release: Remove MAG calibration
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurbenemann committed Dec 1, 2014
1 parent 22f8fa5 commit f6c93d3
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,25 @@ public Fragment getItem(int i) {
switch(i){
case 0:
default:
return new FragmentSetupMAG();
case 1:
// return new FragmentSetupMAG();
// case 1:
return new FragmentSetupIMU();
}
}

@Override
public int getCount() {
return 2;
return 1;
//return 2;
}

@Override
public CharSequence getPageTitle(int position){
switch(position){
case 0:
default:
return FragmentSetupMAG.getTitle(context);
case 1:
// return FragmentSetupMAG.getTitle(context);
// case 1:
return FragmentSetupIMU.getTitle(context);
}
}
Expand Down

0 comments on commit f6c93d3

Please sign in to comment.