tdse-tp4_02-pwm

FIUBA - Electrónica - Taller de Sistemas Embebidos - Trabajo Práctico N°: 4 - PWM
Index Commits Files Refs README
app/inc/app.h (783B)
   1 #ifndef APP_INC_APP_H_
   2 #define APP_INC_APP_H_
   3 
   4 /********************** CPP guard ********************************************/
   5 #ifdef __cplusplus
   6 extern "C" {
   7 #endif
   8 
   9 /********************** inclusions *******************************************/
  10 
  11 /********************** typedef **********************************************/
  12 
  13 /********************** external data declaration ****************************/
  14 
  15 
  16 /********************** external functions declaration ***********************/
  17 
  18 void app_init(void);
  19 void app_update(void);
  20 
  21 /********************** End of CPP guard *************************************/
  22 #ifdef __cplusplus
  23 }
  24 #endif
  25 
  26 #endif /* APP_INC_APP_H_ */
  27 
  28 /********************** end of file ******************************************/