Search found 25 matches

by e-Rok
Wed Nov 19, 2014 4:35 pm
Forum: Support
Topic: Crazyradio in PRX mode
Replies: 12
Views: 8905

Re: Crazyradio in PRX mode

Why do I need to change crazyradio.py and the c-code instead of exclusively the c-code? Would it be possible to change the crazyradio to PRX mode after I've started it using only the crazyradio.py driver?
by e-Rok
Tue Nov 18, 2014 3:27 pm
Forum: Developer discussions
Topic: Problem with crazyradio.set_address()
Replies: 2
Views: 3341

Re: Problem with crazyradio.set_address()

This is from the python terminal utility:

>>> x = hex(0xe7e7e7e7e7)
>>> print len(x)
12 #this confuses me.
by e-Rok
Tue Nov 18, 2014 3:25 pm
Forum: Developer discussions
Topic: Problem with crazyradio.set_address()
Replies: 2
Views: 3341

Problem with crazyradio.set_address()

Hi all, The function set_address(self, channel) in the crazyradio.py module has a hard coded requirement for the hex address to be 5 bytes long. However, each character in a hex address is 2 bytes, and the default address 0xE7E7E7E7E7 is 10 characters long. Therefore, the hex address length is actua...
by e-Rok
Tue Nov 18, 2014 2:52 pm
Forum: Support
Topic: Crazyradio in PRX mode
Replies: 12
Views: 8905

Crazyradio in PRX mode

Thank you to whoenig for pointing out his repository that allows the Crazyradio to be configured in PRX mode. My question is to those who have used this feature. Would I be safe editing main.c in the crazyradio-firmware/firmware/src folder? I would be editing lines such as: static enum radioMode_e r...
by e-Rok
Thu Nov 13, 2014 9:53 pm
Forum: Support
Topic: Amontec jtagkey alternatives
Replies: 9
Views: 7962

Re: Amontec jtagkey alternatives

I did this and it worked. There is a resulting cradio.bin file from running the make command as well. Could I flash this to the crazyradio? This might be preferable since .bin file is much smaller than the .ihx file.
by e-Rok
Thu Nov 13, 2014 9:27 pm
Forum: Support
Topic: Amontec jtagkey alternatives
Replies: 9
Views: 7962

Re: Amontec jtagkey alternatives

Another question, do I need to write another file that will be the binary or the hex file to load onto the crazyradio that I will set to prx mode?
by e-Rok
Thu Nov 13, 2014 9:17 pm
Forum: Support
Topic: Amontec jtagkey alternatives
Replies: 9
Views: 7962

Re: Amontec jtagkey alternatives

Thanks for your help.
by e-Rok
Wed Nov 12, 2014 3:08 pm
Forum: Support
Topic: Amontec jtagkey alternatives
Replies: 9
Views: 7962

Re: Amontec jtagkey alternatives

Crazyradio is by default in transmit mode (ptx). The crazyflie is by default in receive mode (prx). I want to use two crazyradios to send, receive, and log data. Since the crazyradio is a derivative of the nRF24LU1+, it can be put into prx mode by writing to one of the hex addresses in a specific re...
by e-Rok
Wed Nov 12, 2014 3:03 pm
Forum: Support
Topic: Crazyradio compile
Replies: 4
Views: 3470

Re: Crazyradio compile

Thanks for clarifying.
by e-Rok
Tue Nov 11, 2014 3:53 pm
Forum: Support
Topic: Crazyradio compile
Replies: 4
Views: 3470

Re: Crazyradio compile

When I run the make command, do I need to specify creating the bin directory as well? Also are the lines following mkdir -p bin print statements from the Makefile?