完善资料让更多小伙伴认识你,还能领取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? |
|
|
|
|
只有小组成员才能发言,加入小组>>
stm32mp157的异核通信的rpmsg_sdb的m4固件和a7驱动该如何编写?
1453 浏览 0 评论
stm32f103用freertos对一个采样率为1kHz的传感器,进行采样,数据出差
1502 浏览 0 评论
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
3649 浏览 1 评论
3842 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
2461 浏览 1 评论
STM32H7打开DCache后,出现了串口接收信息为空的现象,是哪里出了问题?
727浏览 5评论
用NANO STM32F103RBT6的开发板烧录不了是哪里出了问题?
661浏览 5评论
710浏览 5评论
外部中断触发类型为双边沿触发,进入中断回调后有什么办法判断该边沿是上升沿还是下降沿?
941浏览 5评论
STM32L071CBT6低温环境下无法正常工作是什么原因引起的?
745浏览 5评论
/9
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2025-12-1 22:42 , Processed in 0.622620 second(s), Total 44, Slave 37 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191

淘帖
1563