Metadata-Version: 2.1
Name: lvglgdb
Version: 0.1.0
Summary: LVGL GDB scripts
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy ~=2.2.6
Requires-Dist: Pillow ~=11.3.0
Requires-Dist: prettytable ~=3.16.0

# lvglgdb

lvglgdb is a GDB script for LVGL.

# Structure

```mermaid
graph TD
    lvgl["lvgl<br/>(mem→python object)"]
    gdb_cmds["gdb_cmds<br/>(gdb commands)"]
    lvglgdb["lvglgdb"]

    lvglgdb --> lvgl
    lvglgdb --> gdb_cmds
    gdb_cmds --> lvgl

    classDef pkg fill:white,stroke:gray
    classDef core fill:white,stroke:gray
    class lvglgdb,lvgl,gdb_cmds pkg
```
