This commit is contained in:
con-f-use 2016-08-14 19:24:08 +02:00
parent 75c3c2d5c7
commit 7faa4ec9ea

View file

@ -148,7 +148,7 @@ int ICACHE_FLASH_ATTR issue_command(char * buffer, int retsize, char *pusrdata,
int jj; int jj;
uint8_t __attribute__ ((aligned (32))) buf[VFW_SIZE]; uint8_t __attribute__ ((aligned (32))) buf[VFW_SIZE];
for(jj=0; jj<datlen; jj+=VFW_SIZE) { for(jj=0; jj<datlen; jj+=VFW_SIZE) {
spi_flash_read( nr+jj, (uint32*)buf, (datlen/4)*4 ); spi_flash_read( nr+jj, (uint32*)buf, VFW_SIZE );
if( ets_memcmp( buf, buffer+jj, VFW_SIZE ) != 0 ) goto failw; if( ets_memcmp( buf, buffer+jj, VFW_SIZE ) != 0 ) goto failw;
} }
#endif #endif
@ -204,7 +204,7 @@ int ICACHE_FLASH_ATTR issue_command(char * buffer, int retsize, char *pusrdata,
int jj; int jj;
uint8_t __attribute__ ((aligned (32))) buf[VFW_SIZE]; uint8_t __attribute__ ((aligned (32))) buf[VFW_SIZE];
for(jj=0; jj<datlen; jj+=VFW_SIZE) { for(jj=0; jj<datlen; jj+=VFW_SIZE) {
spi_flash_read( nr+jj, (uint32*)buf, (datlen/4)*4 ); spi_flash_read( nr+jj, (uint32*)buf, VFW_SIZE );
if( ets_memcmp( buf, buffer+jj, VFW_SIZE ) != 0 ) goto failfx; if( ets_memcmp( buf, buffer+jj, VFW_SIZE ) != 0 ) goto failfx;
} }
#endif #endif