mirror of
https://github.com/s1204IT/Lockpick_RCM.git
synced 2024-11-12 13:26:39 +00:00
40 lines
557 B
C
40 lines
557 B
C
/**
|
|
* @file hal.h
|
|
*
|
|
*/
|
|
|
|
#ifndef HAL_H
|
|
#define HAL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "lv_hal_disp.h"
|
|
#include "lv_hal_indev.h"
|
|
#include "lv_hal_tick.h"
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif
|