新手入门
- 积分
- 17
- 金钱
- 17
- 注册时间
- 2023-4-26
- 在线时间
- 3 小时
|
1金钱
直插式LORA模块收发数据,用的SPI通信 没有MD0、AUX需要配置LORA参数吗
发出的数据和收到的数据不一致,有大神可以帮忙看看什么问题吗
- //Lora收发测试程序
- mode =0; //0 send ,1 recv
- if(mode==0)
- {
-
- printf("LORA SEND DATA \r\n");
- while(1)
- {
- printf("--tx=%d\r\n",tx);
- transmitPackets(&tx,1);
-
- tx = tx > 250 ? 0 : ++tx;
- printf("hello,now is %d\r\n",tx);
- delay_ms(1000);
- }
- }
- else
- {
- printf("LORA RECV DATA \r\n");
- while (1)
- {
- int len=0;
- rx=0;
- len=receivePackets(&rx);
- if(len > 0)
- printf("%d\r\n",rx);
- delay_ms(500);
- }
- }
复制代码
|
|