Max wrote:For the last item, to enable sending the RC channel message you'll need to manually change the CONFIG_FLAGS parameter (until I update QGC). Just take the current value and add 64 to it. So:
- Code: Select all
CONFIG_FLAGS = CONFIG_FLAGS + 64
Example using default value:
- Code: Select all
CONFIG_FLAGS = 16 + 64 = 80
(You can also OR the values together if you really want to get technical about it)
Sorry for the dumb question, but I dont understand where I do these changes?
do I have to compile my own fw for this?