forked from adafruit/Adafruit_ILI9341
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLCD_Task.h
More file actions
48 lines (38 loc) · 1.64 KB
/
Copy pathLCD_Task.h
File metadata and controls
48 lines (38 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//******************************************************************************
//! \file LCD_Task.h
//! \brief LCD_Task is a TI RTOS Application Thread that provides an
//! \brief interface for the ILI9341 LCD touchpanel from Adafruit.
//
//******************************************************************************
#ifndef _LCDTASK_H
#define _LCDTASK_H
#ifdef __cplusplus
extern "C"
{
#endif
// ****************************************************************************
// includes
// ****************************************************************************
#include <ti/sysbios/knl/Semaphore.h>
// ****************************************************************************
// defines
// ****************************************************************************
//*****************************************************************************
// globals
//*****************************************************************************
extern Semaphore_Handle lcdSem;
//extern ICall_Semaphore lcdSem;
//*****************************************************************************
// function prototypes
//*****************************************************************************
// -----------------------------------------------------------------------------
//! \brief LCD task creation function
//!
//! \return void
// -----------------------------------------------------------------------------
Void LCDTask_createTask(void);
void LCD_WakeupPinHwiFxn(PIN_Handle hPin, PIN_Id pinId);
#ifdef __cplusplus
{
#endif // extern "C"
#endif // end of _LCDTASK_H definition