Tidy up SuperH port a bit ready for release.

This commit is contained in:
Richard Barry 2010-02-18 13:21:33 +00:00
parent 9b27b75715
commit e35180acd9
11 changed files with 171 additions and 172 deletions

View file

@ -130,7 +130,7 @@ void vParTestToggleLED( unsigned portBASE_TYPE uxLED )
long lParTestGetLEDState( void )
{
/* Returns the state of the fifth LED. */
return PE.DR.WORD & usLEDMasks[ 4 ];
return !( PE.DR.WORD & usLEDMasks[ 4 ] );
}
/*-----------------------------------------------------------*/