cmcu为stm32h743IIt6
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.
 
 
 
 
 
 

19 lines
643 B

/*
* 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 flags);
int parse_csv_to_inf(lv_obj_t *container, const char *csv_data ,int W_data,int H_data);
int run_csv_to_table(const char *csv_data);
int run_csv_to_set(const char *csv_data);
IO_STEP_DATA step_csv_to_table(const char *csv_data);
#endif /* APPLICATIONS_LVGL_UI_DATA_CSV_H_ */