• Visit https://www.embeddedcomputers.net/ for Hardware; Software and all other things related to FlashcatUSB

Dpc3010

Memyselfni

New Member
Can someone please create a dpc3010 script? I tried the dpc3000 script but it doesn’t work with it from reading I believe the mobos are different on those devices.

Help d3mOn
 
Here are the addresses and sizes of the partitions according to usbjtag, should be easy to make a script using the same offset and sizes

Code:
<Test>
   <Name>EPC3010</Name>
   <Cat>Modem</Cat>
   <Protocol>SPIFLASH</Protocol>
   <Endian>Big</Endian>
   <Memorys>
      <Memory>
         <Name>Boot</Name>
         <Type>1</Type>
         <Address>0</Address>
         <Size>0x10000</Size>
      </Memory>
      <Memory>
         <Name>cfg</Name>
         <Type>1</Type>
         <Address>0x10000</Address>
         <Size>0x10000</Size>
      </Memory>
      <Memory>
         <Name>firm1</Name>
         <Type>1</Type>
         <Address>0x20000</Address>
         <Size>0x1e0000</Size>
      </Memory>
      <Memory>
         <Name>firm2</Name>
         <Type>1</Type>
         <Address>0x200000</Address>
         <Size>0x1e0000</Size>
      </Memory>
      <Memory>
         <Name>log</Name>
         <Type>1</Type>
         <Address>0x3e0000</Address>
         <Size>0x20000</Size>
      </Memory>
   </Memorys>
</Test>
 
Back
Top