Search found 16 matches

by linlin2017
Fri Nov 03, 2017 4:34 am
Forum: Developer Discussions
Topic: A question about 'modeDisable', 'modeAbs' and 'modeVelocity'
Replies: 8
Views: 4096

Re: A question about 'modeDisable', 'modeAbs' and 'modeVelocity'

Those should clearly be documented better and quite a bit of legacy involved. :oops: The enum describes what stabilization controllers should be activated for what axis. To get some idea how to use it look in crtp_commander_rpyt.c Thank you. Could you tell me your ideas of attitude control and posi...
by linlin2017
Thu Nov 02, 2017 8:56 am
Forum: Developer Discussions
Topic: A question about 'modeDisable', 'modeAbs' and 'modeVelocity'
Replies: 8
Views: 4096

A question about 'modeDisable', 'modeAbs' and 'modeVelocity'

Hi developers,
I have a question about the source code of crazyflie 2.0. In the stabilizer_types.h file, what 'modeDisable', 'modeAbs' and 'modeVelocity' mean?
Thanks. :)
by linlin2017
Wed Oct 18, 2017 3:05 pm
Forum: Bitcraze
Topic: Problem programming in Eclipse in VM
Replies: 9
Views: 5002

Re: Problem programming in Eclipse in VM

The reason is most likely that eclipse does not know the path the the libc headers. In the VM arm-none-eabi-gcc is installed in the home folder so you can find the include folder there that contains stdio.h and all other libc headers. Though the symbol you are talking about are standard and already...
by linlin2017
Wed Oct 18, 2017 10:13 am
Forum: Bitcraze
Topic: Problem programming in Eclipse in VM
Replies: 9
Views: 5002

Re: Problem programming in Eclipse in VM

These problems are not affecting the development in the sense that this is only static analysis aimed at helping the developer, the compiler is already well configured and compiles the code well. Can you compile the Crazyflie firmware without problems? Thanks arnaud! There is no problem when compil...
by linlin2017
Tue Oct 17, 2017 12:40 pm
Forum: Bitcraze
Topic: Problem programming in Eclipse in VM
Replies: 9
Views: 5002

Re: Problem programming in Eclipse in VM

Thanks arnaud! There is no problem when compiling the Crazyflie firmware. Then I still have a question: Generally when I hold down 'control ' key, and click on a variable, the variable definition can be presented. However, several variables' definitions can't be presented, for example 'true', 'false...
by linlin2017
Tue Oct 17, 2017 3:38 am
Forum: Bitcraze
Topic: Problem programming in Eclipse in VM
Replies: 9
Views: 5002

Re: Problem programming in Eclipse in VM

Hi tobias, I have encountered the same problems. According what you answered, I have turn off Code Analysis, however, there are several problems left, such as "Unresolved inclusion:<stdbool.h>","Unresolved inclusion:<string.h>",and so on. Are these problems fatal errors that affe...