hi,all
I Successfully configured the LPS Node,but the only light on power and mode. The ranging,sync,rx,tx,sfd,rxok are all no light.And the RV are no response. I don't know where the problem is.
thank u very much.
LPS Node can't light up
Re: LPS Node can't light up
Hi Gwiily,
At startup all LED should blink, is that happening?
When you connect with USB on your PC, does your node pass all the tests?
At startup all LED should blink, is that happening?
When you connect with USB on your PC, does your node pass all the tests?
Re: LPS Node can't light up
Hi arnaud,arnaud wrote:Hi Gwiily,
At startup all LED should blink, is that happening?
When you connect with USB on your PC, does your node pass all the tests?
Before I suffered a "wrong chip id", like this,the code is this,I change it to zero in the brackets,like
Code: Select all
if (0) {
return DW_ERROR_WRONG_ID;
}
and the in the deck, it also doesn't work, so I check this topic ,change the config.mk, and the deck is worked,but only tx,rx,sfd are blinking,I don't know it means work normal?
Thank u very much~
Re: LPS Node can't light up
This is normal that it is not working: the line you disabled is basically checking if the SPI connection is working. If you have to disable this check the SPI connection is not working properly and so this explains why the radio is not working at all. Are you still working with your own made node?
As for the node, I have one in front of me that does what you describe, RX/TX are blinking all the time and sometime SFD blinks. This is the normal behavior if you do not have a node ON: RX/TX indicate the receive and transmit state, the crazyflie will transmit and try to receive packet to range. SFD is preamble detection and it happens that the DW1000 detects preamble out of noise. RXOK is blinking when a packet is received properly, if you do not have any node active it is normal that RXOK is not blinking.
As for the node, I have one in front of me that does what you describe, RX/TX are blinking all the time and sometime SFD blinks. This is the normal behavior if you do not have a node ON: RX/TX indicate the receive and transmit state, the crazyflie will transmit and try to receive packet to range. SFD is preamble detection and it happens that the DW1000 detects preamble out of noise. RXOK is blinking when a packet is received properly, if you do not have any node active it is normal that RXOK is not blinking.
-
- Expert
- Posts: 186
- Joined: Mon Dec 28, 2015 5:07 am
Re: LPS Node can't light up
Hi,
You must get right Decawave ID, then more test. I guess that your Hardware SPI interface have some problem.
You must get right Decawave ID, then more test. I guess that your Hardware SPI interface have some problem.
Re: LPS Node can't light up
justinleeyang wrote:Hi,
You must get right Decawave ID, then more test. I guess that your Hardware SPI interface have some problem.
Thanks all, I fond the problem that I made the wrong SPI interface. Thanks for your patience to answer questions~arnaud wrote:This is normal that it is not working: the line you disabled is basically checking if the SPI connection is working. If you have to disable this check the SPI connection is not working properly and so this explains why the radio is not working at all. Are you still working with your own made node?
As for the node, I have one in front of me that does what you describe, RX/TX are blinking all the time and sometime SFD blinks. This is the normal behavior if you do not have a node ON: RX/TX indicate the receive and transmit state, the crazyflie will transmit and try to receive packet to range. SFD is preamble detection and it happens that the DW1000 detects preamble out of noise. RXOK is blinking when a packet is received properly, if you do not have any node active it is normal that RXOK is not blinking.