Guest User

Untitled

a guest
Dec 11th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1.  
  2. /** INCLUDES *******************************************************/
  3. #include "InitSystem.h"
  4. #include <stdio.h>
  5. #include "config.h"
  6. #include <p18cxxx.h>
  7.  
  8.  
  9. /** Declerations ***************************************************/
  10. #pragma code
  11.  
  12. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  13. //+++++++++++++++++main++++++++++++++++++++++++++++++++++++++++++++
  14. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  15. void main(void)
  16. {
  17. InitializeSystem(); // Initialize system
  18.  
  19. // Put in your code for initialization of the port here
  20. TRISD = 0x00;
  21. LATD = 0b00110011;
  22. // Make your code here
  23.  
  24.  
  25. while(1) // Super loop
  26. {
  27. }
  28. }
Add Comment
Please, Sign In to add comment