Skip to content

Commit

Permalink
Add power_data resource to device.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
ravikiranchollangi authored Nov 8, 2024
1 parent 73e268c commit c58277b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Compiler/CompilerOpenFPGA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4049,7 +4049,10 @@ bool CompilerOpenFPGA::LoadDeviceData(
BaseDeviceName(name);
// field is used for identify base for custom device
// no action so far
} else {
} else if (file_type == "power_data") {
// field will be used for power data config, skip for now.
}
else {
ErrorMessage("Invalid device config type: " + file_type + "\n");
status = false;
}
Expand Down

0 comments on commit c58277b

Please sign in to comment.