This commit is contained in:
Nav
2024-07-07 17:50:43 +01:00
parent 1514e89889
commit 3d6e86244b
3 changed files with 4 additions and 9 deletions

View File

@@ -13,9 +13,10 @@ class Signature
throw new \Exception("Cannot generate hex string of incomplete AVR8 target signature.");
}
return '0x' . substr('0' . dechex($this->byteZero), -2)
return '0x' . strtoupper(
substr('0' . dechex($this->byteZero), -2)
. substr('0' . dechex($this->byteOne), -2)
. substr('0' . dechex($this->byteTwo), -2)
;
);
}
}