Skip to content

Commit c10906b

Browse files
Add power_data resource to device.xml (#1717)
* Add power_data resource to device.xml * Incremented patch version * Fix the code format --------- Co-authored-by: ravikiranchollangi <ravikiranchollangi@users.noreply.github.com>
1 parent 73e268c commit c10906b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ set(VERSION_MINOR 0)
3939
# Add the spdlog directory to the include path
4040
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/third_party/spdlog/include ${CMAKE_CURRENT_SOURCE_DIR}/third_party/exprtk ${CMAKE_CURRENT_SOURCE_DIR}/third_party/scope_guard)
4141

42-
set(VERSION_PATCH 437)
42+
set(VERSION_PATCH 438)
4343

4444

4545
option(

src/Compiler/CompilerOpenFPGA.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4049,6 +4049,8 @@ bool CompilerOpenFPGA::LoadDeviceData(
40494049
BaseDeviceName(name);
40504050
// field is used for identify base for custom device
40514051
// no action so far
4052+
} else if (file_type == "power_data") {
4053+
// field will be used for power data config, skip for now.
40524054
} else {
40534055
ErrorMessage("Invalid device config type: " + file_type + "\n");
40544056
status = false;

0 commit comments

Comments
 (0)