mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-04 03:48:46 -05:00
Images generated using PlantUML had transparent backgrounds which made their text difficult to read on GitHub when using "Dark Mode". Forcing a background color of #F0F0F0 ensures they are all readable.
21 lines
446 B
Plaintext
21 lines
446 B
Plaintext
@startuml
|
|
skinparam BackgroundColor F0F0F0
|
|
|
|
PowerManager -> CpuGovernor : GetMinimumFrequencyRequested
|
|
CpuGovernor --> PowerManager : minimumFrequency
|
|
|
|
...CPU frequency change...
|
|
|
|
PowerManager -> CpuGovernor : CpuFrequencyHasChanged
|
|
|
|
CpuGovernor -> cellularSentinel : CpuFrequencyHasChanged
|
|
|
|
CpuGovernor -> eInkSentinel : CpuFrequencyHasChanged
|
|
eInkSentinel -> DriverPWM : updatePWM
|
|
note right
|
|
Critical section!
|
|
mutex necessary
|
|
end note
|
|
|
|
@enduml
|