Subversion Repositories FlightCtrl

Compare Revisions

Ignore whitespace Rev 1162 → Rev 1163

/branches/V0.71i_DSL_X_LED/main.c
24,7 → 24,7
// + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
// + mit unserer Zustimmung zulässig
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
// + Die Funktion printf_P() und das Modul rcdsl.c unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
// + this list of conditions and the following disclaimer.
212,14 → 212,14
SucheLuftruckOffset();
while (!CheckDelay(timer));
 
if (PARAM_USE_DSL_RC) {
if (PARAM_USE_DSL_RC)
rcdsl_init();
printf("\n\rUsing DSL...");
} else {
else
rc_sum_init();
printf("\n\rUsing PPM...");
}
printf("\n\rOK\n\r");
 
printf("\n\rUsing %s", (PARAM_USE_DSL_RC ? "DSL" : "PPM"));
 
printf("\n\rOK\n\r");
}
 
SetNeutral();