44 #include "clock_config.h"    45 #include "fsl_debug_console.h"    48 #include "Driver_I2C.h"    51 #include "issdk_hal.h"    58 #define RAW_ACCEL_DATA_SIZE (6)    76     .bits = {.config = 1},
   126     PRINTF(
"\r\n ISSDK Pedometer Example using FXOS8700 sensor as the acceleration source\r\n");
   130     if (ARM_DRIVER_OK != status)
   132         PRINTF(
"\r\n I2C Initialization Failed\r\n");
   137     status = I2Cdrv->PowerControl(ARM_POWER_FULL);
   138     if (ARM_DRIVER_OK != status)
   140         PRINTF(
"\r\n I2C Power Mode setting Failed\r\n");
   145     status = I2Cdrv->Control(ARM_I2C_BUS_SPEED, ARM_I2C_BUS_SPEED_FAST);
   146     if (ARM_DRIVER_OK != status)
   148         PRINTF(
"\r\n I2C Control Mode setting Failed\r\n");
   157         PRINTF(
"\r\n Sensor Initialization Failed\r\n");
   160     PRINTF(
"\r\n Successfully Initialized Sensor\r\n");
   169         PRINTF(
"\r\n FXOS8700 Sensor Configuration Failed, Err = %d\r\n", status);
   172     PRINTF(
"\r\n Successfully Applied FXOS8700 Sensor Configuration\r\n");
   184         if (0 == (drStatus.b.zyxdr))
   191         if (ARM_DRIVER_OK != status)
   195         rawData.
accel[0] = ((int16_t)readBuffer[0] << 8) | readBuffer[1];
   196         rawData.
accel[1] = ((int16_t)readBuffer[2] << 8) | readBuffer[3];
   197         rawData.
accel[2] = ((int16_t)readBuffer[4] << 8) | readBuffer[5];
 void pedometer_init(pedometer_t *pPedometer)
The interface function initialize the pedometer. 
 
This defines the configuration structure of the pedometer. 
 
The pedometer.h file contains the interface and structure definitions for pedometer application...
 
#define __END_WRITE_DATA__
 
The fxos8700_drv.h file describes the fxos8700 driver interface and structures. 
 
int main(void)
Main function. 
 
void FXOS8700_I2C_SetIdleTask(fxos8700_i2c_sensorhandle_t *pSensorHandle, registeridlefunction_t idleTask, void *userParam)
: The interface function to set the I2C Idle Task. 
 
#define PEDO_FREQHZ_DEFAULT
 
#define BOARD_BootClockRUN
 
This defines the acceleration input data for the pedometer. 
 
#define FXOS8700_M_CTRL_REG2_M_AUTOINC_ACCEL_ONLY_MODE
 
void BOARD_InitDebugConsole(void)
 
#define PEDO_STEP_THRESHOLD_DEFAULT
 
void(* registeridlefunction_t)(void *userParam)
This is the register idle function type. 
 
This defines the sensor specific information for I2C. 
 
#define __END_READ_DATA__
 
This defines the pedometer instance. 
 
#define FXOS8700_WHO_AM_I_PROD_VALUE
 
This structure defines the fxos8700 raw accel data buffer. 
 
#define PEDO_SPEED_PERIOD_DEFAULT
 
debounce_count_t sleepcount_threshold
 
#define RAW_ACCEL_DATA_SIZE
 
const registerreadlist_t FXOS8700_STATUS_READ[]
 
int32_t FXOS8700_I2C_Initialize(fxos8700_i2c_sensorhandle_t *pSensorHandle, ARM_DRIVER_I2C *pBus, uint8_t index, uint16_t sAddress, uint8_t whoAmi)
The interface function to initialize the sensor. 
 
void pedometer_configure(pedometer_t *pPedometer, const pedometer_config_t *pConfig)
The interface function to configure the pedometer. 
 
int32_t pedometer_run(pedometer_t *pPedometer, ped_accel_t *pData)
The interface function excutes the pedometer algorithm. 
 
int32_t FXOS8700_I2C_ReadData(fxos8700_i2c_sensorhandle_t *pSensorHandle, const registerreadlist_t *pReadList, uint8_t *pBuffer)
The interface function to read the sensor data. 
 
#define I2C_S_DEVICE_INDEX
 
const registerwritelist_t fxos8700_Config[]
 
#define FXOS8700_CTRL_REG1_DR_SINGLE_50_HZ
 
int32_t FXOS8700_I2C_Configure(fxos8700_i2c_sensorhandle_t *pSensorHandle, const registerwritelist_t *pRegWriteList)
The interface function to configure he sensor. 
 
struct pedometer_t::pedometer_status_tag status
 
fxls8962_acceldataUser_t rawData
 
#define PEDO_FILTER_STEPS_DEFAULT
 
This structure defines the Write command List. 
 
This structure defines the Read command List. 
 
status_t SMC_SetPowerModeWait(void *arg)
Configures the system to WAIT power mode. API name used from Kinetis family to maintain compatibility...
 
void BOARD_InitPins(void)
Configures pin routing and optionally pin electrical features. 
 
#define FXOS8700_I2C_ADDR
 
#define I2C_S_SIGNAL_EVENT
 
const registerreadlist_t FXOS8700_ACCEL_READ[]
 
#define PEDO_FILTER_TIME_DEFAULT