Aucune description

mikasa 174b8e5709 增加更好的内存分配器: jemalloc il y a 1 mois
config 9db5dc17bf 【功能】csv格式转化为指令,英博PCS协议 il y a 1 mois
src 174b8e5709 增加更好的内存分配器: jemalloc il y a 1 mois
.gitignore 6a442cecf8 【框架搭建】update il y a 2 mois
Cargo.lock 174b8e5709 增加更好的内存分配器: jemalloc il y a 1 mois
Cargo.toml 174b8e5709 增加更好的内存分配器: jemalloc il y a 1 mois
emu-config.yaml c900105b07 【功能】CAN通信 il y a 1 mois
readme.md d909592fe8 【框架搭建】增加类图 il y a 2 mois

readme.md

系统类图

classDiagram
    class Service {
        +run() Result~JoinHandle~
    }
    <<interface>> Service
    class Pcs {
        +new() Pcs
        +run() Result~JoinHandle~
    }
    class Bms {
        +new() Bms
        +run() Result~JoinHandle~
    }
    Pcs ..|> Service
    Bms ..|> Service
    class Ems {
        +devices: Vec~Service~
        +start_services() Result
    }
    Ems *-- Service