This commit is contained in:
Sylvain PILLOT 2023-02-05 14:07:44 +01:00
parent 907639ae1a
commit 28718ae6d0
2 changed files with 2 additions and 5 deletions

View File

@ -462,11 +462,8 @@ int main(void)
char texttosend[1024];
for(int i=-720; i<=720; i++)
{
sprintf( texttosend, "i=%d - Sin(i)=%f - Cos(i)=%f - Tan(i)=%f\n", i, (float) FastSinInt(i), (float) FastCosInt(i), (float) FastTanInt(i) );
usb_fxlink_text(texttosend, 0);
}
sprintf( texttosend, "%s", "Hello !!!" );
usb_fxlink_text(texttosend, 0);
textoutput = false;
}