- Posts: 51
New protocol for iNav flight control software
- anthony7288
-
- Offline
Less
More
29 Sep 2016 02:08 - 29 Sep 2016 02:09 #54386
by anthony7288
Replied by anthony7288 on topic New protocol for iNav flight control software
I tried wiith Protocol V202 on naze32 and it do not work .
Last edit: 29 Sep 2016 02:09 by anthony7288.
- Richard96816
-
- Offline
Less
More
- Posts: 208
02 Oct 2016 21:38 #54523
by Richard96816
Sounds great! Been wishing for nrf24xx support in this arena. I've got lots of black-box receivers that work fine. But they seem so limiting. One aspect of the system that can't be easily expanded or modified. Proprietary receivers close the door on innovation, which is what these platforms are all about.
We have open transmitters which are great. But they hit a brick wall with closed receivers.
Thanks mjbudden. Great stuff!
Replied by Richard96816 on topic New protocol for iNav flight control software
mjbudden wrote: iNav is a fork of Cleanflight targeted for "navigational" rather than racing use. So it supports waypointing, GPS based position hold etc. It runs on a variety of flight controllers and supports a variety of receivers. I've recently added the ability to support a NRF24L01 receiver. There are currently builds for the NAZE, CC3D and CJMCU flight controllers, but I intend to add more builds in future.
If you are using a lemon DSM receiver, then you won't be able to use the iNav protocol - since it is NRF24L01-based.
Sounds great! Been wishing for nrf24xx support in this arena. I've got lots of black-box receivers that work fine. But they seem so limiting. One aspect of the system that can't be easily expanded or modified. Proprietary receivers close the door on innovation, which is what these platforms are all about.
We have open transmitters which are great. But they hit a brick wall with closed receivers.
Thanks mjbudden. Great stuff!
- DJDavid33
-
- Offline
Less
More
- Posts: 74
02 Oct 2016 23:08 #54528
by DJDavid33
Replied by DJDavid33 on topic New protocol for iNav flight control software
or I can find information on how to connect the nRF24L01 on naze32 ...
thank you
thank you
- wasp09
-
- Offline
Less
More
- Posts: 211
03 Oct 2016 04:11 #54533
by wasp09
Replied by wasp09 on topic New protocol for iNav flight control software
We have to find the SPI on the Nase32 I suppose. And the CE on the RF module would be selected on the time I suppose unless the protocol uses a special pin to select.
- DJDavid33
-
- Offline
Less
More
- Posts: 74
04 Oct 2016 23:08 #54611
by DJDavid33
Replied by DJDavid33 on topic New protocol for iNav flight control software
still no links or pictures to be able to connect my naze32 and nRF24L01 module as rx?
thank you
thank you
- anthony7288
-
- Offline
Less
More
- Posts: 51
05 Oct 2016 01:09 #54612
by anthony7288
Replied by anthony7288 on topic New protocol for iNav flight control software
#define NRF24_CE_PIN PA1
#define NRF24_CE_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_CSN_PIN PA6
#define NRF24_CSN_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_SCK_PIN PA7
#define NRF24_MOSI_PIN PB1
#define NRF24_MISO_PIN PB0
#define NRF24_CE_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_CSN_PIN PA6
#define NRF24_CSN_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_SCK_PIN PA7
#define NRF24_MOSI_PIN PB1
#define NRF24_MISO_PIN PB0
- wasp09
-
- Offline
Less
More
- Posts: 211
05 Oct 2016 03:12 - 05 Oct 2016 03:13 #54613
by wasp09
Replied by wasp09 on topic New protocol for iNav flight control software
Just ordered 3 nrf24l01. Have to find out where to connect too. Which board would that be? Would it be same for CC3D and Naze32? I have both.
Thanks.
Thanks.
Last edit: 05 Oct 2016 03:13 by wasp09.
- anthony7288
-
- Offline
Less
More
- Posts: 51
05 Oct 2016 04:18 - 05 Oct 2016 04:20 #54615
by anthony7288
Replied by anthony7288 on topic New protocol for iNav flight control software
i connected to naze32 , and it not yet work . I think it still developing , and not yet use
CC3D
#define NRF24_CSN_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_CSN_PIN PA0
#define NRF24_CE_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_CE_PIN PA1
#define NRF24_CSN_PIN PA0
#define NRF24_SCK_PIN PB5
#define NRF24_MOSI_PIN PB1
#define NRF24_MISO_PIN PB0
CC3D
#define NRF24_CSN_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_CSN_PIN PA0
#define NRF24_CE_GPIO_CLK_PERIPHERAL RCC_APB2Periph_GPIOA
#define NRF24_CE_PIN PA1
#define NRF24_CSN_PIN PA0
#define NRF24_SCK_PIN PB5
#define NRF24_MOSI_PIN PB1
#define NRF24_MISO_PIN PB0
Last edit: 05 Oct 2016 04:20 by anthony7288.
- DJDavid33
-
- Offline
Less
More
- Posts: 74
05 Oct 2016 08:42 #54619
by DJDavid33
Replied by DJDavid33 on topic New protocol for iNav flight control software
hello thank you even though I'm not sure I understand.
you must check PWM?
you must check PWM?
- Cereal_Killer
-
- Offline
05 Oct 2016 13:04 #54627
by Cereal_Killer
The novelty of this method is that it doesn't hook up like a normal receiver, cleanflight [iNav] talks over SPI directly to the NRF module, it's not like any other receiver (PWM or PPM or serial rx)
Taranis X9E | DEVO 10 | Devo U7E | Taranis Q7
What I do in real life: rivergoequestrian.com/
Replied by Cereal_Killer on topic New protocol for iNav flight control software
No!DJDavid33 wrote: hello thank you even though I'm not sure I understand.
you must check PWM?
The novelty of this method is that it doesn't hook up like a normal receiver, cleanflight [iNav] talks over SPI directly to the NRF module, it's not like any other receiver (PWM or PPM or serial rx)
Taranis X9E | DEVO 10 | Devo U7E | Taranis Q7
What I do in real life: rivergoequestrian.com/
- Fernandez
-
- Offline
Less
More
- Posts: 983
19 Feb 2017 11:33 #59316
by Fernandez
Replied by Fernandez on topic New protocol for iNav flight control software
Hi guys is there any update on this ? Is it working ?
I just looked at INAV and about to setup a flying wing, I must say all this project looks very promising!
I just looked at INAV and about to setup a flying wing, I must say all this project looks very promising!
- dexop
-
- Offline
Less
More
- Posts: 1
25 Mar 2017 12:32 #60727
by dexop
Replied by dexop on topic New protocol for iNav flight control software
I flashed my cc3d with cc3d_nrf24 1.3 version firmware and stuck here.
Where to connect nrf24 module on cc3d? could someone help me with wiring?
i guess that i have to connect it on receiver port, but i am unable to find wiring diagram...
Where to connect nrf24 module on cc3d? could someone help me with wiring?
i guess that i have to connect it on receiver port, but i am unable to find wiring diagram...
Time to create page: 0.497 seconds
-
Home
-
Forum
-
Development
-
Protocol Development
- New protocol for iNav flight control software