mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-08-16 12:53:25 +00:00
Added keyfob UI and debug functions
Fixed hex display truncated to 32 bits instead of 64 Updated binary
This commit is contained in:
@@ -1328,7 +1328,7 @@ uint64_t SymField::value_hex_u64() {
|
||||
|
||||
if (type_ != SYMFIELD_DEF) {
|
||||
for (c = 0; c < length_; c++)
|
||||
v += values_[c] << (4 * (length_ - 1 - c));
|
||||
v += (uint64_t)(values_[c]) << (4 * (length_ - 1 - c));
|
||||
return v;
|
||||
} else
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user