完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
电子发烧友论坛扫一扫,分享给好友
|
嗨,我正在使用带有覆盆子pi3的CR95H RFID CLICK模块。我正在使用UART进行通信。
我连接了, SSI_1 =&gt; GND SSI_0 =&gt; GND TX =&gt; RX RX =&gt; TX VIN =&gt; 3.3X GND =&gt; GND。 为了醒来我发送0x00然后我发送回信cmd但我没有任何回应。任何人帮助我我这些模块的新手 #包括&LT; bcm2835.h&GT; #include&lt; string.h&gt; #include&lt; unistd.h&gt; #include&lt; sys / types.h&gt; #include&lt; sys / stat.h&gt; #include&lt; fcntl.h&gt; #include&lt; termios.h&gt; #include&lt; sys / ioctl.h&gt; #包括&LT; stdio.h中&GT; uint8_t buf2 [11],buf1; void send_data(uint8_t buf1) { int fd; fd = open('/ dev / ttyS0',O_RDWR,O_NOCTTY); fd = write(fd,&amp; buf1,11); if(fd == -1){ printf('未能写入文件');} usleep(100000); 关闭(FD); } void recv_data() { int fd; fd = open('/ dev / ttyS0',O_RDWR,O_NOCTTY); if(fd == -1){ printf('未能打开文件');} fd = read(fd,buf2,17); 如果(BUF2 [0] == 0x55的) { 的printf( 'ECHO'); } printf('%x',buf2); 关闭(FD);} int main(void) { bcm2835_init(); 延迟(10); SEND_DATA(0×00); usleep(10); for(int i = 0; i&lt; 10; i ++) { SEND_DATA(0x55的); recv_data(); 延迟(50); } } 以上来自于谷歌翻译 以下为原文 Hi, i am using CR95H RFID CLICK module with raspberry pi3.I am using UART for communication. I connected, SSI_1 => GND SSI_0 => GND TX => RX RX => TX VIN => 3.3X GND => GND. for waking up i am sending 0x00 and then i send echo cmd but i didnt any response.can any one help me out i new to these modules #include #include #include #include #include #include #include #include #include uint8_t buf2[11],buf1;void send_data(uint8_t buf1) { int fd; fd = open('/dev/ttyS0', O_RDWR, O_NOCTTY); fd = write(fd, &buf1, 11); if (fd == -1) { printf('failed to write the file');} usleep(100000); close(fd); }void recv_data() { int fd; fd = open('/dev/ttyS0', O_RDWR, O_NOCTTY); if (fd == -1) { printf('failed to open the file');} fd = read(fd, buf2, 17); if(buf2[0]==0x55) { printf('ECHO'); } printf('%x', buf2); close(fd);} int main(void) { bcm2835_init(); delay(10); send_data(0x00); usleep(10); for(int i=0;i<10;i++) { send_data(0x55); recv_data(); delay(50); } } |
|
相关推荐
3个回答
|
|
|
我正在使用CR95H
那不是STM32 - 所以你为什么要在STM32论坛发帖呢? 编辑 由主持人移动到 https://community.st.com/community/st25-nfcrfid-tags-and-readers &GT; https://community.st.com/community/st25-nfcrfid-tags-and-readers/content?filterID=contentstatus%5Bpublished%5D~objecttype~objecttype%5Bthread%5D 以上来自于谷歌翻译 以下为原文 i am using CR95H That's not an STM32 - so why didyou post this in the STM32 forum? EDIT Moved by moderator to https://community.st.com/community/st25-nfcrfid-tags-and-readers > https://community.st.com/community/st25-nfcrfid-tags-and-readers/content?filterID=contentstatus%5Bpublished%5D~objecttype~objecttype%5Bthread%5D |
|
|
|
|
|
...用覆盆子pi3。我正在使用UART进行通信......
所以你熟悉一般使用Raspberry Pi串口通信吗? 以上来自于谷歌翻译 以下为原文 ... with raspberry pi3. I am using UART for communication ... So are you familiar with using the Raspberry Pi serial comms in general? |
|
|
|
|
|
你好约翰,
为了便于您的信息,CR95HF上设置的默认波特率为57600 bps。 你能告诉我们为UART通信设定了哪种波特率。 您确定要遵守IRQIN / RX引脚上发送的负脉冲的规格。 问候 PB 以上来自于谷歌翻译 以下为原文 Hello John, For your information the default baud rate set on the CR95HF is 57600 bps. Can you please tell which baud rate is programmed for the UART communication. Are you sure that you will comply with the specs for your negative pulse sent on IRQIN/RX pin. Regards PB |
|
|
|
|
只有小组成员才能发言,加入小组>>
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的开发板烧录不了是哪里出了问题?
663浏览 5评论
710浏览 5评论
外部中断触发类型为双边沿触发,进入中断回调后有什么办法判断该边沿是上升沿还是下降沿?
941浏览 5评论
STM32L071CBT6低温环境下无法正常工作是什么原因引起的?
745浏览 5评论
/9
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2025-12-2 07:22 , Processed in 0.648938 second(s), Total 76, Slave 59 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191

淘帖
1077