21 lines
270 B
C
21 lines
270 B
C
/*
|
|
* Copyright (c) @CompanyNameMagicTag. 2022. All rights reserved.
|
|
*/
|
|
|
|
#ifndef LV_SAMPLE_H
|
|
#define LV_SAMPLE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Launch a lvgl demo.
|
|
*/
|
|
void LvglSample(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif |