Advertisement
M0nk3

main.c //fifo

Dec 13th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include "at91sam9263.h"
  2. #include "DBGU.h"
  3. #include <stdbool.h>
  4.    
  5. int main() {
  6.     DBGU_init();
  7.    
  8.     while(1) {
  9.         dbgu_read_ascii();
  10.         dbgu_print_ascii();
  11.     }
  12.    
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement