boot: update for api changes

This commit is contained in:
Michael Scire
2019-10-16 14:28:19 -07:00
committed by SciresM
parent 635ae4e3da
commit 8d16d2152b
4 changed files with 6 additions and 6 deletions

View File

@@ -41,14 +41,14 @@ namespace sts::gpio {
const InitialConfig *configs = nullptr;
size_t num_configs = 0;
const auto hw_type = spl::GetHardwareType();
const FirmwareVersion fw_ver = GetRuntimeFirmwareVersion();
const auto hos_ver = hos::GetVersion();
/* Choose GPIO map. */
if (fw_ver >= FirmwareVersion_200) {
if (hos_ver >= hos::Version_200) {
switch (hw_type) {
case spl::HardwareType::Icosa:
{
if (fw_ver >= FirmwareVersion_400) {
if (hos_ver >= hos::Version_400) {
configs = InitialConfigsIcosa4x;
num_configs = NumInitialConfigsIcosa4x;
} else {