fvaldesc / ardupirates

Automatically exported from code.google.com/p/ardupirates
0 stars 0 forks source link

Radio.pde code error #21

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Radio.pde uses #ifdef instead of #if 
Since QUAD and HEXA are always defined, the code defined in the QUAD block is 
ignored, disabling  //FLIGHT_MODE_X_45Degree

Line 138 is #ifdef QUAD
should be   #if AIRFRAME == QUAD

Line 162 is #ifdef HEXA
should be   #if AIRFRAME == HEXA

Original issue reported on code.google.com by Orio...@gmail.com on 14 Feb 2011 at 12:57

GoogleCodeExporter commented 9 years ago
accepted as an issue, already partially addressed.

Original comment by kidogof...@gmail.com on 22 Feb 2011 at 8:14