我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

Jump to solution
1,500 Views
zhangyunfeng
Contributor II

下面是我的代码:

/*

*  mma7660.c - Linux kernel modules for 3-Axis Orientation/Motion

*  Detection Sensor

*

*  Copyright (C) 2009-2010 Freescale Semiconductor Ltd.

*

*  This program is free software; you can redistribute it and/or modify

*  it under the terms of the GNU General Public License as published by

*  the Free Software Foundation; either version 2 of the License, or

*  (at your option) any later version.

*

*  This program is distributed in the hope that it will be useful,

*  but WITHOUT ANY WARRANTY; without even the implied warranty of

*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

*  GNU General Public License for more details.

*

*  You should have received a copy of the GNU General Public License

*  along with this program; if not, write to the Free Software

*  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#include <linux/module.h>

#include <linux/init.h>

#include <linux/slab.h>

#include <linux/i2c.h>

#include <linux/mutex.h>

#include <linux/delay.h>

#include <linux/interrupt.h>

#include <linux/irq.h>

#include <linux/hwmon-sysfs.h>

#include <linux/err.h>

#include <linux/hwmon.h>

#include <linux/fsl_devices.h>

#include <linux/gpio.h>

/*

* Defines

*/

#if 1

#define assert(expr)\

        if(!(expr)) {\

        printk( "Assertion failed! %s,%d,%s,%s\n",\

        __FILE__,__LINE__,__func__,#expr);\

        }

#else

#define assert(expr) do{} while(0)

#endif

#define MMA7660_DRV_NAME "mma7660"

#define MMA7660_XOUT   0x00

#define MMA7660_YOUT   0x01

#define MMA7660_ZOUT   0x02

#define MMA7660_TILT   0x03

#define MMA7660_SRST   0x04

#define MMA7660_SPCNT   0x05

#define MMA7660_INTSU   0x06

#define MMA7660_MODE   0x07

#define MMA7660_SR   0x08

#define MMA7660_PDET   0x09

#define MMA7660_PD   0x0A

#define MK_MMA7660_SR(FILT, AWSR, AMSR)\

(FILT<<5 | AWSR<<3 | AMSR)

#define MK_MMA7660_MODE(IAH, IPP, SCPS, ASE, AWE, TON, MODE)\

(IAH<<7 | IPP<<6 | SCPS<<5 | ASE<<4 | AWE<<3 | TON<<2 | MODE)

#define MK_MMA7660_INTSU(SHINTX, SHINTY, SHINTZ, GINT, ASINT, PDINT, PLINT, FBINT)\

(SHINTX<<7 | SHINTY<<6 | SHINTZ<<5 | GINT<<4 | ASINT<<3 | PDINT<<2 | PLINT<<1 | FBINT)

#define MODE_CHANGE_DELAY_MS 100

ssize_t show_orientation(struct device *dev, struct attribute *attr, char *buf);

ssize_t show_axis_force(struct device *dev, struct attribute *attr, char *buf);

ssize_t show_xyz_force(struct device *dev, struct attribute *attr, char *buf);

static struct device *hwmon_dev;

static int test_test_mode = 0;

static struct i2c_client *mma7660_i2c_client=NULL;

//static struct mxc_mma7660_platform_data* plat_data; //Lynn

static u8 orientation;

static SENSOR_DEVICE_ATTR(all_axis_force, S_IRUGO, show_xyz_force, NULL, 0); //defined in linux/include/linux/hwmon-sysfs.h, line 34

static SENSOR_DEVICE_ATTR(x_axis_force, S_IRUGO, show_axis_force, NULL, 0);

static SENSOR_DEVICE_ATTR(y_axis_force, S_IRUGO, show_axis_force, NULL, 1);

static SENSOR_DEVICE_ATTR(z_axis_force, S_IRUGO, show_axis_force, NULL, 2);

static SENSOR_DEVICE_ATTR(orientation, S_IRUGO, show_orientation, NULL, 0);

static struct attribute* mma7660_attrs[] =

{

&sensor_dev_attr_all_axis_force.dev_attr.attr,

&sensor_dev_attr_x_axis_force.dev_attr.attr,

&sensor_dev_attr_y_axis_force.dev_attr.attr,

&sensor_dev_attr_z_axis_force.dev_attr.attr,

&sensor_dev_attr_orientation.dev_attr.attr,

NULL

};

static const struct attribute_group mma7660_group =

{

.attrs = mma7660_attrs,

};

static void mma7660_read_xyz(int idx, s8 *pf)

{

  s32 result;

  assert(mma7660_i2c_client);

  do

  {

   result=i2c_smbus_read_byte_data(mma7660_i2c_client, idx+MMA7660_XOUT);

   assert(result>=0);

  }while(result&(1<<6)); //read again if alert

  *pf = (result&(1<<5)) ? (result|(~0x0000003f)) : (result&0x0000003f);

  printk("dbg:mma7660_read_xyz()/*pf=0x%x\n",*pf);

}

static void mma7660_read_tilt(u8* pt)

{

  u32 result;

  assert(mma7660_i2c_client);

  do

  {

   result = i2c_smbus_read_byte_data(mma7660_i2c_client, MMA7660_TILT);

   assert(result>0);

  }while(result&(1<<6)); //read again if alert

  *pt = result & 0x000000ff;

}

static int print_orientation(int orient,char *buf)

{

  int result =0 ;

  char buf1[10],buf2[10];

  switch((orient>>2)&0x07)

  {

  case 1:

   //result = sprintf(buf, "Left\n");

   result = sprintf(buf1, "Left");

   break;

  case 2:

   //result = sprintf(buf, "Right\n");

   result = sprintf(buf1, "Right");

   break;

  case 5:

   //result = sprintf(buf, "Downward\n");

   result = sprintf(buf1, "Downward");

   break;

  case 6:

   //result = sprintf(buf, "Upward\n");

   result = sprintf(buf1, "Upward");

   break;

  default:

   result = sprintf(buf1, "Unknown");

  

  }

   switch(orient & 0x03)

   {

   case 1:

    //result = sprintf(buf, "Front\n");

    result = sprintf(buf2, "Front");

    break;

   case 2:

    //result = sprintf(buf, "Back\n");

    result = sprintf(buf2, "Back");

    break;

   default:

    //result = sprintf(buf, "Unknown\n");

    result = sprintf(buf2, "Unknown");

   }

  result=sprintf(buf,"%s,%s",buf1,buf2);

  return result;

}

ssize_t show_orientation(struct device *dev, struct attribute *attr, char *buf)

{

  int result;

  result = print_orientation(orientation,buf);

   return result;

}

ssize_t show_xyz_force(struct device *dev, struct attribute *attr, char *buf)

{

  int i;

  s8 xyz[3];

  for(i=0; i<3; i++)

   mma7660_read_xyz(i, &xyz);

  printk("dbg:show_xyz_force()/(xyz[0]=%d,xyz[1]=%d,xyz[2]=%d)\n", xyz[0], xyz[1], xyz[2]);

  return sprintf(buf, "(%d,%d,%d)\n", xyz[0], xyz[1], xyz[2]);

}

ssize_t show_axis_force(struct device *dev, struct attribute *attr, char *buf)

{

  s8 force;

  int n = to_sensor_dev_attr(attr)->index;

  mma7660_read_xyz(n, &force);

  printk("dbg:show_axis_force()/force=%d\n", force);

  return sprintf(buf, "%d\n", force);

}

static void mma7660_worker(struct work_struct *work)

{

u8 tilt, new_orientation;

char buf1[20],buf2[20];

int result=0;

mma7660_read_tilt(&tilt);

new_orientation = tilt & 0x1f;

if(orientation!=new_orientation){

  //printk("dbg:/mma7660_worker(),orientation=%d,new_orientation=%d\n",orientation,new_orientation);

  print_orientation(orientation,buf1);

  print_orientation(new_orientation,buf2);

  printk("dbg:/mma7660_worker(),orientation changes from %s to %s\n",buf1,buf2);

  orientation = new_orientation;

  //enter Active + Auto-Wake mode again

  if(mma7660_i2c_client)

  {

   result = i2c_smbus_write_byte_data(mma7660_i2c_client,

    MMA7660_MODE, MK_MMA7660_MODE(0, 0, 0, 0, 0, 0, 0));  //enter standby

    assert(result==0);

   result = i2c_smbus_write_byte_data(mma7660_i2c_client,

    //MMA7660_MODE, MK_MMA7660_MODE(0, 1, 0, 0, 0, 0, 1));

    MMA7660_MODE, MK_MMA7660_MODE(0, 1, 0, 1, 1, 0, 1));  //IPP=1,ASE=1,AWE=1,MODE=1

    assert(result==0);

  }

  }

else

  printk("dbg:/mma7660_worker(),exit Auto-Sleep mode to Auto-Wake mode\n");

}

DECLARE_WORK(mma7660_work, mma7660_worker);

// interrupt handler

static irqreturn_t mmx7660_irq_handler(int irq, void *dev_id)

{

schedule_work(&mma7660_work);

printk("dbg:/mmx7660_irq_handler(irq=%d,dev_id=%s)\n",irq,(char*)dev_id);

return IRQ_RETVAL(1);

}

/*

* Initialization function

*/

static int mma7660_init_client(struct i2c_client *client)

{

int result;

int irq;

struct hrtimer timer;

printk("%s %d\n", __func__, __LINE__);

mma7660_i2c_client = client;

//plat_data = (struct mxc_mma7660_platform_data *)client->dev.platform_data;

//assert(plat_data);

if(test_test_mode)

{

  /*

   * Probe the device. We try to set the device to Test Mode and then to

   * write & verify XYZ registers

   */

  result = i2c_smbus_write_byte_data(client, MMA7660_MODE,MK_MMA7660_MODE(0, 0, 0, 0, 0, 1, 0));

  assert(result==0);

  mdelay(MODE_CHANGE_DELAY_MS);

  result = i2c_smbus_write_byte_data(client, MMA7660_XOUT, 0x2a);

  assert(result==0);

 

  result = i2c_smbus_write_byte_data(client, MMA7660_YOUT, 0x15);

  assert(result==0);

  result = i2c_smbus_write_byte_data(client, MMA7660_ZOUT, 0x3f);

  assert(result==0);

  result = i2c_smbus_read_byte_data(client, MMA7660_XOUT);

  printk("%s x %x\n",__func__, result);

  result= i2c_smbus_read_byte_data(client, MMA7660_YOUT);

printk("%s y %x\n",__func__, result);

  result= i2c_smbus_read_byte_data(client, MMA7660_ZOUT);

  printk("%s z %x\n",__func__, result);

  assert(result=0x3f);

}

// Enable Orientation Detection Logic

result = i2c_smbus_write_byte_data(client,

  MMA7660_MODE, MK_MMA7660_MODE(0, 0, 0, 0, 0, 0, 0)); //enter standby

//printk("result=i2c_smbus_write_byte_data(client, MMA7660_MODE, MK_MMA7660_MODE(0, 0, 0, 0, 0, 0, 0))=%d\n",result);

assert(result==0);

result = i2c_smbus_write_byte_data(client, MMA7660_SRST, 0x03); //AWSRS=1,AMSRS=1

result = i2c_smbus_write_byte_data(client,

  MMA7660_SR, MK_MMA7660_SR(2, 2, 1));    //REG = 0x08,sample rate reg,

  //MMA7660_SR, MK_MMA7660_SR(2, 2, 2));    //REG = 0x08,sample rate reg,

       //FILT = 2, 3 measurement samples at the rate set by AMSR[2:0]  or AWSR[1:0]

       //          have to match before the device updates portrait/landscape data

       //          in TILT(0x03) register.

       //AWSR = 2, 8 Samples/Second Auto-Wake Mode

       //AMSR = 1, 64 Samples/Second Active and Auto-Sleep Mode

       //AMSR = 2, 32 Samples/Second Active and Auto-Sleep Mode

//printk("result=i2c_smbus_write_byte_data(client, MMA7660_SR, MK_MMA7660_SR(2, 2, 1));= %d\n",result);

assert(result==0);

  result = i2c_smbus_write_byte_data(client,

   MMA7660_INTSU, MK_MMA7660_INTSU(0, 0, 0, 0, 1, 0, 1, 1));

   //MMA7660_INTSU, MK_MMA7660_INTSU(1, 1, 1, 1, 1, 1, 1, 1));

        // ASINT =1 , Exiting Auto-Sleep causes an interrupt

        // PLINT =1 , Up/Down/Right/Left position change causes an interrupt

        // FBINT =1 , Front/Back position change causes an interrupt

  //printk("result=i2c_smbus_write_byte_data(client, MMA7660_INTSU, MK_MMA7660_INTSU(0, 0, 0, 0, 1, 0, 1, 1));= %d\n",result);

  assert(result==0);

  result = i2c_smbus_write_byte_data(client,

   MMA7660_SPCNT, 0xA0);

  //printk("result=i2c_smbus_write_byte_data(client, MMA7660_SPCNT, 0xA0); = %d\n",result);

  assert(result==0);

  result = i2c_smbus_write_byte_data(client,

   MMA7660_MODE, MK_MMA7660_MODE(0, 1, 0, 0, 0, 0, 1));

   //MMA7660_MODE, MK_MMA7660_MODE(0, 1, 0, 1, 1, 0, 1));    //IPP=1,ASE=1,AWE=1,MODE=1

  //printk("result=i2c_smbus_write_byte_data(client, MMA7660_MODE, MK_MMA7660_MODE(0, 1, 0, 0, 0, 0, 1)); = %d\n",result);

  assert(result==0);

  // MMA7660's INT is connected to imx51 EVK's GPIO4_17

  // We install interrupt handler here

  //printk("plat_data->irq=%d\n",plat_data->irq);

  //assert(plat_data->irq);

  client->irq = 13;

  result = request_irq(client->irq, mmx7660_irq_handler,

   IRQF_TRIGGER_FALLING , MMA7660_DRV_NAME, NULL);

  assert(result==0);

  mdelay(MODE_CHANGE_DELAY_MS);

  {

   u8 tilt; char buf1[20];

   mma7660_read_tilt(&tilt);

   orientation = tilt&0x1f;

   print_orientation(orientation,buf1);

   printk("dbg:/mma7660_init_client(),init state %s\n",buf1);

  }

  return result;

}

static struct input_polled_dev *mma7660_idev;

#define POLL_INTERVAL  100

#define INPUT_FUZZ 4

#define INPUT_FLAT 4

#include <linux/input-polldev.h>

static void report_abs(void)

{

  int i;

  s8 xyz[3];

  s16 x, y, z;

  for(i=0; i<3; i++)

   mma7660_read_xyz(i, &xyz);

  /* convert signed 10bits to signed 16bits */

  x = (short)(xyz[0] << 6) >> 6;

  y = (short)(xyz[1] << 6) >> 6;

  z = (short)(xyz[2] << 6) >> 6;

  input_report_abs(mma7660_idev->input, ABS_X, x);

  input_report_abs(mma7660_idev->input, ABS_Y, y);

  input_report_abs(mma7660_idev->input, ABS_Z, z);

  input_sync(mma7660_idev->input);

  printk("dbg:report_abs()/x=%d,y=%d,z=%d\n",x,y,z);

}

static void mma7660_dev_poll(struct input_polled_dev *dev)

{

report_abs();

}

/////////////////////////end//////

/*

* I2C init/probing/exit functions

*/

static int __devinit mma7660_probe(struct i2c_client *client,

       const struct i2c_device_id *id)

{

  int result;

  struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);

  struct input_dev *idev;

 

  if(!i2c_check_functionality(adapter,  I2C_FUNC_SMBUS_BYTE|I2C_FUNC_SMBUS_BYTE_DATA))

  {

         printk("%s I2C check functionality failed.\n",__func__);

         return -ENODEV;

  }

  //assert(result);

  /* Initialize the MMA7660 chip */

  result = mma7660_init_client(client);

  assert(result==0);

  result = sysfs_create_group(&client->dev.kobj, &mma7660_group);

  assert(result==0);

  hwmon_dev = hwmon_device_register(&client->dev);

  assert(!(IS_ERR(hwmon_dev)));

  dev_info(&client->dev, "build time %s %s\n", __DATE__, __TIME__);

  /*input poll device register */

  mma7660_idev = input_allocate_polled_device();

  if (!mma7660_idev) {

   dev_err(&client->dev, "alloc poll device failed!\n");

   result = -ENOMEM;

   return result;

  }

  mma7660_idev->poll = mma7660_dev_poll;

  mma7660_idev->poll_interval = POLL_INTERVAL;

  idev = mma7660_idev->input;

  idev->name = MMA7660_DRV_NAME;

  idev->id.bustype = BUS_I2C;

  idev->dev.parent = &client->dev;

  idev->evbit[0] = BIT_MASK(EV_ABS);

  //set absolute  coordinate maximum range (-512,512) ?

  input_set_abs_params(idev, ABS_X, -512, 512, INPUT_FUZZ, INPUT_FLAT);

  input_set_abs_params(idev, ABS_Y, -512, 512, INPUT_FUZZ, INPUT_FLAT);

  input_set_abs_params(idev, ABS_Z, -512, 512, INPUT_FUZZ, INPUT_FLAT);

  result = input_register_polled_device(mma7660_idev);

  if (result) {

   dev_err(&client->dev, "register poll device failed!\n");

   return result;

  }

  //Caller should also setup pull method and setup capabilities(id,name,phys,bits) of the

  //corresponing  input_dev structure

  //////////////////////////////

  return result;

}

static int __devexit mma7660_remove(struct i2c_client *client)

{

  int result;

  result = i2c_smbus_write_byte_data(client,MMA7660_MODE, MK_MMA7660_MODE(0, 0, 0, 0, 0, 0, 0));

  assert(result==0);

  free_irq(mma7660_i2c_client->irq, NULL);

  sysfs_remove_group(&client->dev.kobj, &mma7660_group);

  hwmon_device_unregister(hwmon_dev);

  return result;

}

#ifdef CONFIG_PM

static int mma7660_suspend(struct i2c_client *client, pm_message_t mesg)

{

  int result;

  result = i2c_smbus_write_byte_data(client,

   MMA7660_MODE, MK_MMA7660_MODE(0, 0, 0, 0, 0, 0, 0));

  assert(result==0);

  return result;

}

static int mma7660_resume(struct i2c_client *client)

{

  int result;

  result = i2c_smbus_write_byte_data(client,

   MMA7660_MODE, MK_MMA7660_MODE(0, 1, 0, 0, 0, 0, 1));

  assert(result==0);

  return result;

}

#else

#define mma7660_suspend  NULL

#define mma7660_resume  NULL

#endif /* CONFIG_PM */

static const struct i2c_device_id mma7660_id[] = {

{ MMA7660_DRV_NAME, 0 },

{ }

};

MODULE_DEVICE_TABLE(i2c, mma7660_id);

static struct i2c_driver mma7660_driver = {

  .driver = {

   .name = MMA7660_DRV_NAME,

   .owner = THIS_MODULE,

  },

  .suspend = mma7660_suspend,

  .resume = mma7660_resume,

  .probe = mma7660_probe,

  .remove = __devexit_p(mma7660_remove),

  .id_table = mma7660_id,

};

static int __init mma7660_init(void)

{

  return i2c_add_driver(&mma7660_driver);

}

static void __exit mma7660_exit(void)

{

  i2c_del_driver(&mma7660_driver);

}

MODULE_DESCRIPTION("MMA7660 3-Axis Orientation/Motion Detection Sensor driver");

MODULE_LICENSE("GPL");

MODULE_VERSION("1.1");

module_init(mma7660_init);

module_exit(mma7660_exit);

0 Kudos
1 Solution
1,248 Views
zhangyunfeng
Contributor II

谢谢tomas! 我先按照你的意见改改看。

zyfworldcn@126.com

发件人: Tomas Vaverka

发送时间: 2015-03-04 17:28

收件人: zhang yunfeng

主题: Re: - 我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

reply from Tomas Vaverka in Sensors - View the full discussion

Hi Zhang,

I would recommend performing a simple test consisting of following steps:

1. Put the device into standby mode by clearing the MODE bit of MODE register.

2. Select the sample rate based on your target power consumption level and/or desired response rate using AMSR[3:0] and FILT[2:0] bits of SR register (see Table 5 in the AN3837 for more details).

3. Enable the orientation interrupt by setting both PLINT and FBINT bits of INTSU register.

4. Set both IPP and IAH bits of MODE register depending on your needs (open drain or push-pull, active high or low) and put the device into Active mode by setting the MODE bit of MODE register.

5. In your ISR read the TILT register to deassert the interrupt pin and monitor the interrupt pin activity using an oscilloscope or a logic analyzer.

I hope it helps. If you are still unable to get the interrupt to work, let me know and I will investigate it further.

Regards,

Tomas

PS: If my answer helps to solve your question, please mark it as "Correct" or “Helpful”. Thank you.

Did your question get answered?

If so, say thanks by clicking Correct Answer in the community thread!

Reply to this message by replying to this email, or go to the message on Freescale Community

Start a new discussion in Sensors by email or at Freescale Community

Following 我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平 in these streams: Inbox

View solution in original post

0 Kudos
3 Replies
1,248 Views
TomasVaverka
NXP TechSupport
NXP TechSupport

Hi Zhang,

I would recommend performing a simple test consisting of following steps:


1. Put the device into standby mode by clearing the MODE bit of MODE register.

2. Select the sample rate based on your target power consumption level and/or desired response rate using AMSR[3:0] and FILT[2:0] bits of SR register (see Table 5 in the AN3837 for more details).

3. Enable the orientation interrupt by setting both PLINT and FBINT bits of INTSU register.

4. Set both IPP and IAH bits of MODE register depending on your needs (open drain or push-pull, active high or low) and put the device into Active mode by setting the MODE bit of MODE register.

5. In your ISR read the TILT register to deassert the interrupt pin and monitor the interrupt pin activity using an oscilloscope or a logic analyzer.

I hope it helps. If you are still unable to get the interrupt to work, let me know and I will investigate it further.


Regards,

Tomas


PS: If my answer helps to solve your question, please mark it as "Correct" or “Helpful”. Thank you.

0 Kudos
1,248 Views
zhangyunfeng
Contributor II

hi,tomas:

根据你的意见修改后,还是和以前一样。

我忘了说明一点,现象还有无法进入中断函数。

我使用的是AM335X平台,我估计如果进入中断函数就不会有什么问题了。

zyfworldcn@126.com

发件人: zyfworldcn@126.com

发送时间: 2015-03-04 17:43

收件人: jive-47801551-50wr-2-afcg

主题: Re: Re: - 我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

谢谢tomas! 我先按照你的意见改改看。

zyfworldcn@126.com

发件人: Tomas Vaverka

发送时间: 2015-03-04 17:28

收件人: zhang yunfeng

主题: Re: - 我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

reply from Tomas Vaverka in Sensors - View the full discussion

Hi Zhang,

I would recommend performing a simple test consisting of following steps:

1. Put the device into standby mode by clearing the MODE bit of MODE register.

2. Select the sample rate based on your target power consumption level and/or desired response rate using AMSR[3:0] and FILT[2:0] bits of SR register (see Table 5 in the AN3837 for more details).

3. Enable the orientation interrupt by setting both PLINT and FBINT bits of INTSU register.

4. Set both IPP and IAH bits of MODE register depending on your needs (open drain or push-pull, active high or low) and put the device into Active mode by setting the MODE bit of MODE register.

5. In your ISR read the TILT register to deassert the interrupt pin and monitor the interrupt pin activity using an oscilloscope or a logic analyzer.

I hope it helps. If you are still unable to get the interrupt to work, let me know and I will investigate it further.

Regards,

Tomas

PS: If my answer helps to solve your question, please mark it as "Correct" or “Helpful”. Thank you.

Did your question get answered?

If so, say thanks by clicking Correct Answer in the community thread!

Reply to this message by replying to this email, or go to the message on Freescale Community

Start a new discussion in Sensors by email or at Freescale Community

Following 我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平 in these streams: Inbox

1,249 Views
zhangyunfeng
Contributor II

谢谢tomas! 我先按照你的意见改改看。

zyfworldcn@126.com

发件人: Tomas Vaverka

发送时间: 2015-03-04 17:28

收件人: zhang yunfeng

主题: Re: - 我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平

reply from Tomas Vaverka in Sensors - View the full discussion

Hi Zhang,

I would recommend performing a simple test consisting of following steps:

1. Put the device into standby mode by clearing the MODE bit of MODE register.

2. Select the sample rate based on your target power consumption level and/or desired response rate using AMSR[3:0] and FILT[2:0] bits of SR register (see Table 5 in the AN3837 for more details).

3. Enable the orientation interrupt by setting both PLINT and FBINT bits of INTSU register.

4. Set both IPP and IAH bits of MODE register depending on your needs (open drain or push-pull, active high or low) and put the device into Active mode by setting the MODE bit of MODE register.

5. In your ISR read the TILT register to deassert the interrupt pin and monitor the interrupt pin activity using an oscilloscope or a logic analyzer.

I hope it helps. If you are still unable to get the interrupt to work, let me know and I will investigate it further.

Regards,

Tomas

PS: If my answer helps to solve your question, please mark it as "Correct" or “Helpful”. Thank you.

Did your question get answered?

If so, say thanks by clicking Correct Answer in the community thread!

Reply to this message by replying to this email, or go to the message on Freescale Community

Start a new discussion in Sensors by email or at Freescale Community

Following 我最近在调试MMA7660,其他都行,就是中断一开始是高电平,位置变化后变为低电平,无法恢复为高电平 in these streams: Inbox

0 Kudos