Search found 11 matches

by 3zuli
Wed Jun 08, 2016 9:31 am
Forum: Support
Topic: Battery Replacement
Replies: 5
Views: 4141

Re: Battery Replacement

If you need more batteries, I can recommend these: http://www.banggood.com/5X-Eachine-3_7V-380mah-25C-Lipo-Battery-for-Hubsan-H107-H107L-H107C-H107D-p-993948.html I've been using these batteries for quite some time now and I think I can say they are a good alternative. They are a bit bigger, so you ...
by 3zuli
Wed Jun 08, 2016 8:59 am
Forum: Developer Discussions
Topic: [Bug] Long log group names cause system crash
Replies: 2
Views: 2085

[Bug] Long log group names cause system crash

Yesterday I was playing around with some new log groups in the firmware. I had a variable, which I wanted to log, so I created a log group and added the variable to it. It compiled without errors. I was able to flash the Crazyflie, after that it rebooted as usual and waited for connection. Then, as ...
by 3zuli
Wed May 04, 2016 8:13 pm
Forum: Support
Topic: Unable to use different radio address
Replies: 3
Views: 2839

Re: Unable to use different radio address

I forked my code after the following commit: commit 9ceb597ebe1ed0740ed483950a73f8651fbcbb78 Merge: c29c75b 9665026 Author: Arnaud Taffanel <arnaud@taffanel.org> Date: Thu Dec 10 11:11:28 2015 +0100 I probably haven't pulled from the official repository it ever since. I made heavy modifications to S...
by 3zuli
Wed May 04, 2016 1:32 pm
Forum: Support
Topic: Unable to use different radio address
Replies: 3
Views: 2839

Unable to use different radio address

I'm having problems with using different radio addresses for the Crazyflie. Using the Crazyflie Client, I'm able to set the radio channel and bitrate and this works fine. However, although I'm able to change the radio address as well, I seem to have problems with connecting to it. For these tests, I...
by 3zuli
Tue Jan 12, 2016 2:14 pm
Forum: Developer Discussions
Topic: FP16 in Log
Replies: 2
Views: 2666

FP16 in Log

Hi, I'm trying to use the FP16 data type for logging. Here's the log config setup I'm trying to use: self.imu_log = LogConfig(name="IMU", period_in_ms=30) imu_type="FP16" imu_log.add_variable("acc.x", imu_type) imu_log.add_variable("acc.y", imu_type) imu_log.a...
by 3zuli
Mon Jan 11, 2016 3:04 pm
Forum: Developer Discussions
Topic: Param, what is it use
Replies: 1
Views: 1488

Re: Param, what is it use

Param is the framework for, you guessed it, reading and setting of parameters inside the firmware. the PARAM_ADD macro is used to specify a variable, which will be available for reading and writing through the framework. See the tutorial: https://www.youtube.com/watch?v=chWrNh73YBw
by 3zuli
Thu Dec 10, 2015 1:06 pm
Forum: Support
Topic: [SOLVED] Crazyflie 2.0 doesn't respond to commands
Replies: 3
Views: 2709

Re: Crazyflie 2.0 doesn't respond to commands

Hi, it seems like I have solved the problem. Turns out I just have to put the Crazyflie on a flat surface to let it calibrate itself. It was a bit strange, because I've been starting it handheld from the very beginning and it seemed to work most of the time, until this day. Nevermind. What still kee...
by 3zuli
Fri Dec 04, 2015 1:39 pm
Forum: Support
Topic: [SOLVED] Crazyflie 2.0 doesn't respond to commands
Replies: 3
Views: 2709

[SOLVED] Crazyflie 2.0 doesn't respond to commands

Hi guys, I am working with two Crazyflies 2.0. I used to fly them mainly through the android app, occasionally also through the PC client. I've previously made some changes to firmware (I added reading and logging of ADC values) and everything worked fine. Recently, I also developed a PCB for measur...
by 3zuli
Thu Oct 29, 2015 6:28 pm
Forum: General discussions
Topic: Ad hoc mod possible for the Crazyflie Nano Quadcopter radio system
Replies: 2
Views: 2634

Re: Ad hoc mod possible for the Crazyflie Nano Quadcopter radio system

In principle this should be possible. There are libraries such as RadioHead http://www.airspayce.com/mikem/arduino/RadioHead/index.html, which can do (among other things) mesh networking. RadioHead works with the NRF24/51 family chips. However it's made for Arduino, so first it's necessary to port i...
by 3zuli
Mon Oct 12, 2015 11:45 am
Forum: Developer Discussions
Topic: Issues with compiling master branch [Solved]
Replies: 1
Views: 1904

Re: Issues with compiling master branch

Ok, it looks like I've solved the problem. All that was needed was a make clean and then build again. :oops: