hello_world example added and encoder_ctrl begun

This commit is contained in:
Gabor
2017-07-26 11:37:02 +02:00
parent 1456853135
commit 592a54f8ee
13 changed files with 352 additions and 3 deletions

View File

@@ -0,0 +1,42 @@
/**
* @file encoder_ctrl.h
*
*/
#ifndef ENCODER_CTRL_H
#define ENCODER_CTRL_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lv_conf.h"
#if USE_LV_EXAMPLE != 0
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
void encoder_ctrl_init(void);
/**********************
* MACROS
**********************/
#endif /*USE_LV_EXAMPLE != 0*/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*ENCODER_CTRL_H*/