完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,我也....你找到了LSM303D.c和LSM303D.h?
以上来自于谷歌翻译 以下为原文 Hi, I also.... You have found LSM303D.c and LSM303D.h? |
|
|
|
你需要什么样的处理器或语言驱动程序? SPI接口非常易于使用。我正在尝试*将它与Tiva LM4C129处理器一起使用,该处理器具有SPI硬件模块,但它几乎同样易于爆炸。以下是C中用于读写LSM303D寄存器的基本例程:(假设您的处理器具有SPI硬件)
uint8_t read_LSM303D_reg(uint8_t reg) { uint8_t值; CLEAR_LSM303_CHIP_SELECT; SSI3_DR_R = reg | 0x80; //发送带有'read'位设置的寄存器号 SSI3_DR_R = DUMMY_DATA; 而(SSIBusy(SSI3_BASE)); SET_LSM303_CHIP_SELECT; value = SSI3_DR_R; value = SSI3_DR_R; return(value); } void write_LSM303D_reg(char * name,uint8_t reg,uint8_t value) { uint8_t temp; CLEAR_LSM303_CHIP_SELECT; SSI3_DR_R = reg; SSI3_DR_R =值; 而(SSIBusy(SSI3_BASE)); SET_LSM303_CHIP_SELECT; temp = SSI3_DR_R; //清空FIFO temp = SSI3_DR_R; } 也许这有帮助吗? 帕特里克 *我说''尝试''因为LSM303D不适合我们,我们无法从ST获得任何帮助!我可以很好地读写寄存器,大多数时候我都可以获得加速度计和磁力计的良好值。有一段时间,LSM303D中的加速度计似乎锁定,使得X和Z值是相同的值并且永远不会改变,Y值通常与X和Z的值相同但是变化+/- 1或2时不时。芯片的其余部分继续正常工作,但加速度计被锁定在这种状态,似乎没有人想要解决这个问题。希望你不要遇到同样的问题? 以上来自于谷歌翻译 以下为原文 What processor or language do you need the driver for? The SPI interface is very easy to use. I'm trying* to use it with a Tiva LM4C129 processor, which has a SPI hardware module, but it's almost as easy to bit-bang. Here are the basic routines in C for reading and writing LSM303D registers: (assuming your processor has SPI hardware) uint8_t read_LSM303D_reg(uint8_t reg) { uint8_t value; CLEAR_LSM303_CHIP_SELECT; SSI3_DR_R = reg|0x80; // send register number with 'read' bit set SSI3_DR_R = DUMMY_DATA; while (SSIBusy(SSI3_BASE)); SET_LSM303_CHIP_SELECT; value = SSI3_DR_R; value = SSI3_DR_R; return (value); } void write_LSM303D_reg(char *name, uint8_t reg, uint8_t value) { uint8_t temp; CLEAR_LSM303_CHIP_SELECT; SSI3_DR_R = reg; SSI3_DR_R = value; while (SSIBusy(SSI3_BASE)); SET_LSM303_CHIP_SELECT; temp = SSI3_DR_R; // empty the FIFO temp = SSI3_DR_R; } Maybe that helps? Patrick * I said ''trying'' because the LSM303D is not behaving for us and we can't get any help from ST! I can read and write the registers just fine, and I get good values for the accelerometer and magnetometer most of the time. Once in a while, the accelerometer in the LSM303D seems to lock up such that the X and Z values are the same value and never change, and the Y value is usually the same value as X and Z but varies by +/- 1 or 2 every now and then. The rest of the chip continues to work just fine, but the accelerometer is locked into this state, and it appears that no one at ST wants to address the issue. Hope you don't run into the same problems? |
|
|
|
只有小组成员才能发言,加入小组>>
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
2634 浏览 1 评论
3208 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
1783 浏览 1 评论
3609 浏览 6 评论
5987 浏览 21 评论
939浏览 4评论
1315浏览 4评论
在Linux上安装Atollic TRUEStudio的步骤有哪些呢?
582浏览 3评论
使用DMA激活某些外设会以导致外设无法工作的方式生成代码是怎么回事
1302浏览 3评论
1357浏览 3评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 10:35 , Processed in 1.101217 second(s), Total 51, Slave 44 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号