bootrom: remove deprecated CMD_SETUP_WRITE

This commit is contained in:
Philippe Teuwen 2019-10-05 18:42:32 +02:00
commit 3560cf5466
4 changed files with 2 additions and 12 deletions

View file

@ -150,15 +150,6 @@ void UsbPacketReceived(uint8_t *packet, int len) {
}
break;
case CMD_SETUP_WRITE: {
/* The temporary write buffer of the embedded flash controller is mapped to the
* whole memory region, only the last 8 bits are decoded.
*/
for (i = 0; i < 12; i++)
_flash_start[i + arg0] = c->d.asDwords[i];
}
break;
case CMD_FINISH_WRITE: {
for (int j = 0; j < 2; j++) {
uint32_t flash_address = arg0 + (0x100 * j);