Daniel,
Over the last couple of years, the sensor's team has had some issues with debug configurations. So we often strip them out of projects before shipping the kit (on purpose). The assumption there being that user's can create a configuration which matches their hardware needs.
As to your other problem, would I be correct in guessing that you have a K22F board, but no sensor shield, and are therefore using the 8700 sensor on the K22F? All of the projects under the "FSFK" subdirectory require a sensor shield to build and run "out of the box". This is because the default configuration builds all six sensor fusion algorithms, including 9-axis accel/mag/gyro. The gyro isn't available on the K22F, so the project will hang. You saw an "error" in I2C address because the 8700 on the K22F is at a different address than the one on the shield boards. The address is correct for the shield implementation (yes, we DO test all our standard configurations).
Try this, go into build.h and find:
// normally all enabled: degrees of freedom algorithms to be executed
#define COMPUTE_1DOF_P_BASIC // 1DOF pressure (altitude) and temperature: (pressure)
#define COMPUTE_3DOF_G_BASIC // 3DOF accel tilt: (accel)
#define COMPUTE_3DOF_B_BASIC // 3DOF mag eCompass (vehicle): (mag)
#define COMPUTE_3DOF_Y_BASIC // 3DOF gyro integration: (gyro)
#define COMPUTE_6DOF_GB_BASIC // 6DOF accel and mag eCompass: (accel + mag)
#define COMPUTE_6DOF_GY_KALMAN // 6DOF accel and gyro (Kalman): (accel + gyro)
#define COMPUTE_9DOF_GBY_KALMAN // 9DOF accel, mag and gyro (Kalman): (accel + mag + gyro)
and change them to:
// normally all enabled: degrees of freedom algorithms to be executed
//#define COMPUTE_1DOF_P_BASIC // 1DOF pressure (altitude) and temperature: (pressure)
#define COMPUTE_3DOF_G_BASIC // 3DOF accel tilt: (accel)
#define COMPUTE_3DOF_B_BASIC // 3DOF mag eCompass (vehicle): (mag)
//#define COMPUTE_3DOF_Y_BASIC // 3DOF gyro integration: (gyro)
#define COMPUTE_6DOF_GB_BASIC // 6DOF accel and mag eCompass: (accel + mag)
//#define COMPUTE_6DOF_GY_KALMAN // 6DOF accel and gyro (Kalman): (accel + gyro)
//#define COMPUTE_9DOF_GBY_KALMAN // 9DOF accel, mag and gyro (Kalman): (accel + mag + gyro)
That will disable all gyro and altimeter related build options.
Regards,
Mike