This commit is contained in:
Nav
2025-03-29 14:06:37 +00:00
parent b72f20ee99
commit 53e68c3246
3 changed files with 3 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ namespace DebugToolDrivers::Wch::Protocols::WchLink
}
}
void WchLinkInterface::writeFlashFullBlocks(
void WchLinkInterface::writeFlashFullBlock(
Targets::TargetMemoryAddress startAddress,
Targets::TargetMemoryBufferSpan buffer,
Targets::TargetMemorySize blockSize,

View File

@@ -46,7 +46,7 @@ namespace DebugToolDrivers::Wch::Protocols::WchLink
) override;
void writeFlashPartialBlock(Targets::TargetMemoryAddress startAddress, Targets::TargetMemoryBufferSpan buffer);
void writeFlashFullBlocks(
void writeFlashFullBlock(
Targets::TargetMemoryAddress startAddress,
Targets::TargetMemoryBufferSpan buffer,
Targets::TargetMemorySize blockSize,

View File

@@ -658,7 +658,7 @@ namespace DebugToolDrivers::Wch
return;
}
this->wchLinkInterface.writeFlashFullBlocks(
this->wchLinkInterface.writeFlashFullBlock(
startAddress,
buffer,
this->programmingBlockSize,