mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-02 19:08:54 -05:00
This way we have controll over what does what, and can test them separatelly Logging statistics update more and better data presented
16 lines
299 B
C++
16 lines
299 B
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
namespace sys::cpu
|
|
{
|
|
enum class AlgoID
|
|
{
|
|
None,
|
|
FrequencyHold,
|
|
ImmediateUpscale,
|
|
FrequencyStepping,
|
|
};
|
|
}
|