46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#include <map>
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
std::map<uint32_t, std::string> cpu_freq_label_m = {
|
|
{612000000, "Sleep Mode"},
|
|
{1020000000, "Stock"},
|
|
{1224000000, "Dev OC"},
|
|
{1785000000, "Boost Mode"},
|
|
{1963000000, "Safe Max"},
|
|
{2397000000, "Unsafe Max"},
|
|
{2703000000, "Absolute Max"},
|
|
};
|
|
|
|
std::map<uint32_t, std::string> cpu_freq_label_e = {
|
|
{612000000, "Sleep Mode"},
|
|
{1020000000, "Stock"},
|
|
{1224000000, "Dev OC"},
|
|
{1785000000, "Boost Mode & Safe Max"},
|
|
{2091000000, "Unsafe Max"},
|
|
{2295000000, "Absolute Max"},
|
|
};
|
|
std::map<uint32_t, std::string> gpu_freq_label_e = {
|
|
{76800000, "Boost Mode"},
|
|
{307200000, "Handheld"},
|
|
{345600000, "Handheld"},
|
|
{384000000, "Handheld"},
|
|
{422400000, "Handheld"},
|
|
{460800000, "Handheld Safe Max"},
|
|
{768000000, "Docked"},
|
|
{921600000, "Safe Max"},
|
|
{960000000, "Unsafe Max"},
|
|
{1075200000, "Aboslute Max"},
|
|
};
|
|
|
|
std::map<uint32_t, std::string> gpu_freq_label_m = {
|
|
{76800000, "Boost Mode"},
|
|
{307200000, "Handheld"},
|
|
{384000000, "Handheld"},
|
|
{460800000, "Handheld"},
|
|
{614400000, "Handheld Safe Max"},
|
|
{768000000, "Docked"},
|
|
{1075200000, "Safe Max"},
|
|
{1305600000, "Unsafe Max"},
|
|
{1536000000, "Aboslute Max"},
|
|
}; |