mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Bug fix - loop count value was wrong.
This commit is contained in:
parent
d46a1e9699
commit
eb6a668a8f
|
@ -235,7 +235,7 @@ extern unsigned long uxParTextGetLED( unsigned long uxLED );
|
|||
|
||||
static unsigned short generate_io_state( void *arg )
|
||||
{
|
||||
for( ulString = 0; ulString < 4; ulString++ )
|
||||
for( ulString = 0; ulString < 3; ulString++ )
|
||||
{
|
||||
if( uxParTextGetLED( ulString + 5 ) )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue