Hello all,
you will probably laugh at this question, but I wish I could get the print out working. Please have a look at code :
Display All
Any ideas?
BEST.
you will probably laugh at this question, but I wish I could get the print out working. Please have a look at code :
C Source Code: printout
- #include "eta_bsp.h"
- #include "string.h"
- #include "stdlib.h"
- #include "eta_utils_terminal.h"
- #include "eta_utils_stdio.h"
- /***************************************************************************//**
- *
- * main - the main entry point.
- *
- ******************************************************************************/
- int
- main(void)
- {
- uint16_t k = 0;
- //
- // Loop forever.
- //
- while(1)
- {
- k++;
- if(k > 1000){
- printf("above", k);
- k = 0;
- }else if(k < 1000){
- printf("below", k);
- k = 0;
- }
- }
- }
BEST.
The post was edited 1 time, last by MUETA: Missing information: I am trying to print in "debug terminal". ().