This commit is contained in:
Nav
2022-12-24 02:54:56 +00:00
parent a0a7693d03
commit de97e8d4e0
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ namespace Bloom::Usb
if (devices.empty()) {
throw DeviceInitializationFailure(
"Failed to find USB device with matching vendor and product ID. Please examine the debug tool's USB "
"connection, as well as the selected environment's debug tool configuration in bloom.yaml"
"connection, as well as the selected environment's debug tool configuration, in bloom.yaml"
);
}

View File

@@ -38,7 +38,7 @@ namespace Bloom
Targets::TargetMemoryBuffer data;
for (auto i = 0; i < readsRequired; i++) {
for (std::uint32_t i = 0; i < readsRequired; i++) {
auto dataSegment = targetControllerConsole.readMemory(
this->memoryType,
this->startAddress + static_cast<Targets::TargetMemoryAddress>(readSize * i),