diff --git a/firmware/console/binary/tunerstudio.cpp b/firmware/console/binary/tunerstudio.cpp index 4260b56..4825e54 100644 --- a/firmware/console/binary/tunerstudio.cpp +++ b/firmware/console/binary/tunerstudio.cpp @@ -235,6 +235,9 @@ void TunerStudio::handleWriteChunkCommand(TsChannelBase* tsChannel, ts_response_ return; } + uint8_t * addr = (uint8_t *) (getWorkingPageAddr() + offset); + memcpy(addr, content, count); + sendOkResponse(tsChannel, mode); }