You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*
|
|
|
|
|
* Change Logs:
|
|
|
|
|
* Date Author Notes
|
|
|
|
|
* 2026-02-18 24018 the first version
|
|
|
|
|
*/
|
|
|
|
|
#ifndef APPLICATIONS_LVGL_UI_DATA_CSV_H_
|
|
|
|
|
#define APPLICATIONS_LVGL_UI_DATA_CSV_H_
|
|
|
|
|
|
|
|
|
|
int parse_csv_to_table(lv_obj_t *container, const char *csv_data);
|
|
|
|
|
int parse_csv_to_inf(lv_obj_t *container, const char *csv_data ,int W_data,int H_data);
|
|
|
|
|
|
|
|
|
|
#endif /* APPLICATIONS_LVGL_UI_DATA_CSV_H_ */
|