完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我打算在与SPI相同的SPI总线上使用LIS3DH。
但在数据表中,它说LIS3DH CS引脚选择SPI或I2C。 当LIS3DH CS引脚为高电平时(LIS3DH处于I2C模式),可以将SPI用于EEPROM吗? 我觉得不行,或者? #cs #spi #lis2dh #lis2hh 以上来自于谷歌翻译 以下为原文 I'm planning to use a LIS3DH on the same SPI bus as an EEPROM. But in the datasheet it says the LIS3DH CS pin is selecting SPI or I2C. So is it possible to use SPI to the EEPROM when LIS3DH CS pin is high (the LIS3DH would be in I2C mode)? I don't think it would be ok, or? #cs #spi #lis2dh #lis2hh |
|
相关推荐
11个回答
|
|
可能。如果在spi模式下设置两个设备,则使用spi模式。如果选择i2c eeprom,请在i2c模式下同时使用。共享公共汽车是常见的做法。
以上来自于谷歌翻译 以下为原文 Possible. If you set both devices in spi mode then use spi mode. If you select i2c eeprom use both in i2c mode. Sharing the bus is common practice. |
|
|
|
''当LIS3DH CS引脚为高电平时,可以将SPI用于EEPROM(LIS3DH将处于I2C模式)?''
不,这可能会对你很糟糕(如果还没有)。多个ST器件不使用具有共享SPI总线的兼容庄园中的片选(CS)概念。未选择时,CS为高电平,同时将器件置于I2C模式。因此,如果您向EEPROM发送的任何数据看起来像LIS3DH的I2C从地址,它将驱动SDI线损坏数据到EEPROM。 我了解了硬件,不能再在共享SPI总线上使用这些ST设备。 以上来自于谷歌翻译 以下为原文 ''So is it possible to use SPI to the EEPROM when LIS3DH CS pin is high (the LIS3DH would be in I2C mode)?'' NO, this will likely go badly for you (if it hasn't already). Several ST devices don't use the notion of Chip Select (CS) in a compatible manor with a shared SPI bus. When not selected, the CS is HIGH which also puts the device in I2C mode. Therefore if any data to you EEPROM happens to look like the LIS3DH's I2C slave address, it will drive the SDI line corrupting data to your EEPROM. I learned this the hardware and can no longer use these ST devices on a shared SPI bus. |
|
|
|
我同意你提出的担忧。如果I2C地址匹配,它肯定会失败。
该LIS2HH芯片组具有CTRL4寄存器,可以启用/禁用I2C模块。 因此,如果我将CS拉低并写入此CTRL4以禁用I2C模块,那么这有助于在CS拉高后避免I2C工作吗? 有人可以在早上确认吗? 问候, Shriharsh Datar 以上来自于谷歌翻译 以下为原文 I agree to the concern that you have raised. Definitely it will fail if the I2C address is matched. This LIS2HH chipset has CTRL4 register which can enable/disable the I2C module. So if i pull CS low and write to this CTRL4 to disable the I2C module then will this help avoid I2C working after CS is pulled HIGH? Can someone please confirm at earliet? Regards, Shriharsh Datar |
|
|
|
要在共享SPI总线上使用LIS3DH,必须禁用I2C。
可以在每个设备通电后按照以下顺序完成。 a =读(0x17) 写(0x17,(0x80或a)) 最好的祝福 米罗斯拉夫 以上来自于谷歌翻译 以下为原文 To use LIS3DH on shared SPI bus it is necessary to disable the I2C. It can be done applying following sequence after each device power on. a = read(0x17) write(0x17, (0x80 OR a)) Best regards Miroslav |
|
|
|
我们的加速度计LIS2DH12有问题。您写道,将第7位安装到寄存器0x17应禁用I2S模块。这正是LIS2DH12的工作吗?
这意味着0x00寄存器中的第1位? 以上来自于谷歌翻译 以下为原文 We have a problem with the accelerometer LIS2DH12. You wrote that the installation of the 7th bits to the register 0x17 should disable the I2S module. This is exactly the work in LIS2DH12? which means that the 1st bit in 0x00 register? |
|
|
|
我的答案也适用于LIS2DH12。
将寄存器0x17的第7位置1以禁用I2C。 最好的祝福 米罗斯拉夫 以上来自于谷歌翻译 以下为原文 My answer is also valid for LIS2DH12. Set the 7th bit in register 0x17 to disable I2C. Best regards Miroslav |
|
|
|
建议的代码也作为数据表中的注释给出(我参考IIS328DQ数据表 - en.DM00150114.pdf)。
但是,Note的最后一句是误导性的,应该删除:''这样,CTRL_REG4被编程为增强SPI的稳健性。''该注释解决的问题与CTRL_REG4无关。 由于多从SPI是常见的,因此Note也应从该部分的末尾移到开头(可能在表8之前。'''串行接口引脚说明'')。 以上来自于谷歌翻译 以下为原文 The suggested code is also given as a Note in the Data Sheet (I refer to the IIS328DQ Data Sheet - en.DM00150114.pdf). However, the last sentence of the Note is misleading and shall be deleted: ''In this way, CTRL_REG4 is programmed to enhance the robustness of the SPI.'' The problem solved with that note has nothing to do with CTRL_REG4. As multi-slave SPI is common, the Note shall also be moved from the end of the section to the beginning (may be before Table 8. ''Serial interface pin description''). |
|
|
|
谢谢你的通知。我们将尽快更新数据表。
最好的祝福 米罗斯拉夫 以上来自于谷歌翻译 以下为原文 Thank you for the notice. We are going to update the datasheet asap. Best regards Miroslav |
|
|
|
嗨,
因此,当我偶然发现这个线程时,我已经通过将近6个小时试图在LIS2DH12上为基本运动检测配置中断而没有任何运气。 你猜怎么了 ?是的,我用共享的SPI总线在原型板上炸了加速器。 在寄存器0x17上设置第7位似乎解决了我在第二块原型板上的问题。不会再被愚弄。 ST微的嘿伙计们!您不应该更新所有相关的数据表并警告开发人员关于这个主要问题吗? 吉兹..... 以上来自于谷歌翻译 以下为原文 Hi, So I've passed nearly 6 hours trying to configure an interrupt for basic movement detection on a LIS2DH12 without any luck when I've stumbled on this thread. Guess what ? Yep I've fried the accelerator on my prototype board with a shared SPI bus. Setting bit #7 on register 0x17 seemed to have solved my issues on a second prototype board. Won't get fooled again. Hey guys at ST micro ! Shouldn't you update ALL related datasheets and warn developers regarding this MAJOR issue ? Geez..... |
|
|
|
我可以建议以同样的方式更新LIS3DH数据表吗?
禁用SPI的建议过程访问保留寄存器空间中的一个位。只要程序不在数据表中,我就有点不舒服。通过定义,保留寄存器映射可能会随着设备的任何未来硬件版本而改变,恕不另行通知。 谢谢, 诺伯特 以上来自于谷歌翻译 以下为原文 May I suggest to also update the LIS3DH datasheet in the same way? The suggested procedure to disable the SPI accesses a bit in the reserved register space. I am a bit uncomfortable doing this as long as the procedure is not in the datasheet. By definiton, reserved registers mappings may change with any future HW revision of the device without notice. Thanks, Norbert |
|
|
|
我要求负责数据表的团队添加信息。
最好的祝福 米罗斯拉夫 以上来自于谷歌翻译 以下为原文 I asked the team responsible for the datasheet to add the information. Best regards Miroslav |
|
|
|
只有小组成员才能发言,加入小组>>
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
2642 浏览 1 评论
3208 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
1783 浏览 1 评论
3611 浏览 6 评论
5989 浏览 21 评论
939浏览 4评论
1316浏览 4评论
在Linux上安装Atollic TRUEStudio的步骤有哪些呢?
584浏览 3评论
使用DMA激活某些外设会以导致外设无法工作的方式生成代码是怎么回事
1303浏览 3评论
1361浏览 3评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-24 23:13 , Processed in 1.508686 second(s), Total 99, Slave 82 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号