RFM69H关于读取RSSI的问题。
时间:10-02
整理:3721RD
点击:
RFM69H读取RSSI的时候始终为0,应该是在什么时候读取?
u8 RFM69H_ReadRSSI(void)
{
u16 temp=0xff;
if((SPIRead(0x23)&0x02)==0x02)
{
temp=SPIRead(0x24);
temp=0xff-temp;
temp>>=1;
temp&=0xff;
}
return (u8)temp;
}
u8 RFM69H_ReadRSSI(void)
{
u16 temp=0xff;
if((SPIRead(0x23)&0x02)==0x02)
{
temp=SPIRead(0x24);
temp=0xff-temp;
temp>>=1;
temp&=0xff;
}
return (u8)temp;
}
你好我用stm32的spi接RFM69,能读配置,为什么写配置写不进去呢~!