Show
Ignore:
Timestamp:
08/04/08 20:51:26 (5 months ago)
Author:
liamstask
Message:

- incorporate changes from freertos lwip 1.3 port - mostly changes to sys_arch.c, adding in more stats info

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • firmware/trunk/core/makingthings/SAM7_EMAC.c

    r769 r778  
    522522  while( !( AT91C_BASE_RSTC->RSTC_RSR & AT91C_RSTC_NRSTL ) ) 
    523523  { 
    524     __asm volatile ( "NOP" ); 
    525   } 
    526     __asm volatile ( "NOP" ); 
     524    portNOP(); 
     525  } 
     526 
     527  portNOP(); 
    527528 
    528529  /* Setup the pins. */ 
     
    783784  while( !( AT91C_BASE_EMAC->EMAC_NSR & AT91C_EMAC_IDLE ) ) 
    784785  { 
    785     __asm( "NOP" ); 
     786    portNOP(); 
    786787  } 
    787788 
     
    806807  while( !( AT91C_BASE_EMAC->EMAC_NSR & AT91C_EMAC_IDLE ) ) 
    807808  { 
    808     __asm( "NOP" ); 
     809    portNOP(); 
    809810  }; 
    810811