Forum Discussion
Altera_Forum
Honored Contributor
11 years ago --- Quote Start --- However when I add an additional line of printf("message"); I do not see this output on the console. Why does this happen? --- Quote End --- Try add "\n" to end of out string, as this:
printf("message\n"); Line Feed or Carriage Return chars usually must be in output text to see it in console. --- Quote Start --- If I want to for example, blink led's using delay (in C), where would I write this line of code? --- Quote End --- Debugger in DS-5 help you find this place -- where LEDs make one blink step, there may insert dummy loop like: for (int loo = 0; loo < 1000*1000; loo++) ;