docs: fixes API section of the docs to include everything from LVGL. (#4192)

This commit is contained in:
Kevin Schlosser
2023-05-01 03:27:28 -06:00
committed by GitHub
parent 7ae90e43d2
commit 3fe1dcd222
24 changed files with 909 additions and 48 deletions

View File

@@ -122,6 +122,7 @@ shutil.copytree(examples_path, os.path.join(temp_directory, 'examples'))
with open(os.path.join(temp_directory, 'Doxyfile'), 'rb') as f:
data = f.read().decode('utf-8')
data = data.replace('#*#*LV_CONF_PATH*#*#', os.path.join(base_path, 'lv_conf.h'))
data = data.replace('*#*#SRC#*#*', '"{0}"'.format(lvgl_src_path))
with open(os.path.join(temp_directory, 'Doxyfile'), 'wb') as f: