-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lattice,xilinx: new try to fix (again) uint64_t print format
- Loading branch information
1 parent
1d276eb
commit 02c3327
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
* Copyright (C) 2019 Gwenhael Goavec-Merou <[email protected]> | ||
*/ | ||
|
||
#define __STDC_FORMAT_MACROS | ||
#include <inttypes.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <stdint.h> | ||
|
@@ -1048,7 +1050,7 @@ void Lattice::displayReadReg(uint64_t dev) | |
uint8_t err; | ||
printf("displayReadReg\n"); | ||
if (dev & 1<<0) printf("\tTRAN Mode\n"); | ||
printf("\tConfig Target Selection : %llx\n", (dev >> 1) & 0x07); | ||
printf("\tConfig Target Selection : %" PRIx64 "\n", (dev >> 1) & 0x07); | ||
if (dev & 1<<4) printf("\tJTAG Active\n"); | ||
if (dev & 1<<5) printf("\tPWD Protect\n"); | ||
if (dev & 1<<6) printf("\tOTP\n"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
* Copyright (C) 2019 Gwenhael Goavec-Merou <[email protected]> | ||
*/ | ||
|
||
#define __STDC_FORMAT_MACROS | ||
#include <inttypes.h> | ||
#include <unistd.h> | ||
|
||
#include <cstring> | ||
|
@@ -385,7 +387,7 @@ Xilinx::Xilinx(Jtag *jtag, const std::string &filename, | |
if (read_dna) { | ||
if (_fpga_family == ARTIX_FAMILY || _fpga_family == KINTEXUS_FAMILY) { | ||
uint64_t dna = Xilinx::fuse_dna_read(); | ||
printf("{\"dna\": \"0x%016llx\"}\n", dna); | ||
printf("{\"dna\": \"0x%016" PRIx64 "\"}\n", dna); | ||
} else { | ||
throw std::runtime_error("Error: read_xadc only supported for Artix 7"); | ||
} | ||
|