MCB1700_Welcome/Welcome.h

43 lines
1000 B
C
Raw Normal View History

2020-11-14 22:50:55 +01:00
/*! @file Welcome.h
@brief global header file for project
@author Hendrik Schutter
@version V1.0
@date 14.11.2020
This file includes other header files used in this project.
*/
#ifndef __ES2_V5_APP_H
#define __ES2_V5_APP_H
#include <stdio.h>
#include "LPC17xx.H"
#include "GLCD_Config.h"
#include "Board_GLCD.h"
#include "Board_LED.h"
2020-12-05 21:50:44 +01:00
#include "Board_Buttons.h"
2020-12-05 23:50:47 +01:00
#include "stdint.h"
2020-11-14 22:50:55 +01:00
//-------------------------------------------------------------------
// defines
//-------------------------------------------------------------------
#define TEXTLENGTH_SHORT 30 // Length of short text
//-------------------------------------------------------------------
// function declarations
//-------------------------------------------------------------------
//library globals - always external keyword
extern GLCD_FONT GLCD_Font_16x24;
extern GLCD_FONT GLCD_Font_6x8; // GLCD Font from GLCD_Fonts.c
2020-12-05 23:52:24 +01:00
extern uint32_t u32Volume;
2020-12-05 23:50:47 +01:00
2020-11-14 22:50:55 +01:00
// project globals
#endif /* __ES2_V5_APP_H */