fsm/src/fm10k/Constants.h
2021-10-24 21:32:49 +02:00

12 lines
396 B
C++

#pragma once
#include "Functions.h"
namespace FM10K {
const uint64_t BAR4_SIZE = 0x0000000004000000;
const uint64_t BAR4_OFFSET = 0x0;
//These should not be set (on hw) to more than 1100 or less than 800
constexpr uint32_t DEFAULT_VDDS_VOLTAGE = 850; //Spec says 0.9 Volts, and also 0.85
constexpr uint32_t DEFAULT_VDDF_VOLTAGE = 950; //Spec says 0.9 Volts, and also 0.95
}