mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 01:58:32 -04:00
Tidy up SuperH port a bit ready for release.
This commit is contained in:
parent
9b27b75715
commit
e35180acd9
11 changed files with 171 additions and 172 deletions
|
@ -238,7 +238,6 @@ struct uip_eth_addr xAddr;
|
|||
void vApplicationProcessFormInput( char *pcInputString )
|
||||
{
|
||||
char *c;
|
||||
//extern void vParTestSetLEDState( long lState );
|
||||
|
||||
/* Process the form input sent by the IO page of the served HTML. */
|
||||
|
||||
|
@ -248,11 +247,13 @@ char *c;
|
|||
/* Turn the FIO1 LED's on or off in accordance with the check box status. */
|
||||
if( strstr( c, "LED0=1" ) != NULL )
|
||||
{
|
||||
// vParTestSetLEDState( pdTRUE );
|
||||
/* Turn LED 4 on. */
|
||||
vParTestSetLED( 4, 1 );
|
||||
}
|
||||
else
|
||||
{
|
||||
// vParTestSetLEDState( pdFALSE );
|
||||
/* Turn LED 4 off. */
|
||||
vParTestSetLED( 4, 0 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue