diff --git a/conf/airframes/TUDELFT/tudelft_course2016_bebop_avoider.xml b/conf/airframes/TUDELFT/tudelft_course2016_bebop_avoider.xml index 6239fc1ae77..341f116e545 100644 --- a/conf/airframes/TUDELFT/tudelft_course2016_bebop_avoider.xml +++ b/conf/airframes/TUDELFT/tudelft_course2016_bebop_avoider.xml @@ -6,11 +6,6 @@ - - - - - @@ -51,6 +46,7 @@ --> + diff --git a/conf/airframes/TUDELFT/tudelft_heliGeniusDD.xml b/conf/airframes/TUDELFT/tudelft_heliGeniusDD.xml index 6d9b39c0e7e..547fe1b7906 100644 --- a/conf/airframes/TUDELFT/tudelft_heliGeniusDD.xml +++ b/conf/airframes/TUDELFT/tudelft_heliGeniusDD.xml @@ -15,10 +15,6 @@ - - - - diff --git a/sw/airborne/modules/orange_avoider/orange_avoider.c b/sw/airborne/modules/orange_avoider/orange_avoider.c index 9726c353905..f46928f18fa 100644 --- a/sw/airborne/modules/orange_avoider/orange_avoider.c +++ b/sw/airborne/modules/orange_avoider/orange_avoider.c @@ -15,6 +15,7 @@ #include "firmwares/rotorcraft/navigation.h" #include "state.h" #include +#include #include uint8_t safeToGoForwards = false; @@ -39,7 +40,7 @@ void orange_avoider_periodic() // Check the amount of orange. If this is above a threshold // you want to turn a certain amount of degrees safeToGoForwards = color_count < tresholdColorCount; - printf("Checking if this funciton is called %d treshold: %d now: %d \n", color_count, tresholdColorCount, + printf("Checking if this function is called %d threshold: %d now: %d \n", color_count, tresholdColorCount, safeToGoForwards); }