mirror of
https://github.com/CTCaer/hekate
synced 2024-11-03 02:26:35 +00:00
c41f98039c
Version 0.8.0. Expect dragons!
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
|