mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-29 13:27:08 +08:00
Bug fix - loop count value was wrong.
This commit is contained in:
@ -235,7 +235,7 @@ extern unsigned long uxParTextGetLED( unsigned long uxLED );
|
|||||||
|
|
||||||
static unsigned short generate_io_state( void *arg )
|
static unsigned short generate_io_state( void *arg )
|
||||||
{
|
{
|
||||||
for( ulString = 0; ulString < 4; ulString++ )
|
for( ulString = 0; ulString < 3; ulString++ )
|
||||||
{
|
{
|
||||||
if( uxParTextGetLED( ulString + 5 ) )
|
if( uxParTextGetLED( ulString + 5 ) )
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user