Advertisement
Guest User

Untitled

a guest
Jan 19th, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include "hardware.h"
  2. int tchar;
  3. // Initialise the hardware
  4. void appInitHardware(void) {
  5.     initHardware();
  6. }
  7. // Initialise the software
  8. TICK_COUNT appInitSoftware(TICK_COUNT loopStart){
  9.     return 0;
  10. }
  11. // This is the main loop
  12. TICK_COUNT appControl(LOOP_COUNT loopCount, TICK_COUNT loopStart) {
  13.  
  14.     {      
  15.         // Clear the screen:-
  16.         //display.clear();
  17.         speech.print( "U/n");
  18.         display.print( "U" );
  19.         //PRINTF(stdout,"U ");
  20.    
  21.     }
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement