bits2rbt: Fix compilation error

Signed-off-by: Tomasz Michalak <tmichalak@antmicro.com>
This commit is contained in:
Tomasz Michalak 2020-12-02 12:03:14 +01:00
parent a3ca052ccf
commit 1ddda8f79b
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class ConfigurationPackets {
const uint32_t kCmdReg = 0x4;
const uint32_t kWcfgCmd = 0x1;
// Writing the RCRC(0x7) command in type 1 packet with 1 word to the CMD register (0x30008001)
const std::array<uint32_t, 2> kRCrcCmd = {0x30008001, 0x7};
const std::array<uint32_t, 2> kRCrcCmd = {{0x30008001, 0x7}};
size_t words_per_frame_;
std::string architecture_;
ConfigurationFrames configuration_data_packets_;