fpgad 0.1.1

An FPGA manager daemon that handles the dirty work for you.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# FPGAd Communication Module

# General principle

```mermaid
flowchart TD
    A[External] -- Call --> B{{Interface}}
    B --> C[[Create Platform Object]]
    C --> D{need fpga?}
    D -- y --> E[[create fpga obj]]
    E --> F{need overlay_handler?}
    D -- n --> F
    F -- y --> G[[create overlay_handler obj]]
    G --> H[[attempt to handle the call]]
    F -- no --> H
    H -- Response --> Z[External]
```