Advertisement
ST4SH3R

microcontroller_dbgu_interrupt_main.c

Dec 13th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. #include "at91sam9263.h"
  2. #include "DBGU.h"
  3. #include <stdbool.h>
  4. #include <string.h>
  5. #include <stdlib.h>
  6.  
  7. #define BUFFERSIZE 0xFF
  8.  
  9.  
  10. void toggleCharCase(char *);
  11. void toggleStringCase(char *);
  12. void charToUpper(char *);
  13. void charToLower(char *);
  14.  
  15. void dbgu_print_ascii(char *a) {}
  16.  
  17. int main() {
  18.  
  19.     DBGU_init();
  20.  
  21.     while(1) {}
  22.  
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement