~aleteoryx/muditaos

ref: 44d3306f280cc7d6daa718d2a9f6323e48f54616 muditaos/module-services/service-evtmgr/doc/charger_temperature_algorithm.puml -rw-r--r-- 586 bytes
44d3306f — rrandomsky [CP-1059] Fix for erase only sensitive data from logs 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@startuml
skinparam BackgroundColor F0F0F0
(*) --> [initialization] "measurement" as meas
"teperature range\n violation interrupt" -> meas
If "Detected range" then
    ---> [T<=0 Cdeg] "charger off" as coff
    --> "set interrupt\nbounds with hysteresis" as sh
    else
    --> [T>45 Cdeg] coff
    else    
    ---> [T = 1~15 Cdeg] "Charging: \nCC 300mA\nCV 4.35V"
    -> "charger On" as con
    else    
    ---> [T = 15~35 Cdeg] "Charging: \nCC 1600mA\nCV 4.35V"
    --> con
    else    
    ---> [T = 35~45 Cdeg] "Charging: \nCC 1600mA\nCV 4.1V"
    -> con
Endif
con -> sh
@enduml