Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6a80bc

Browse files
committed
Fixed typo where configSETUP_PRIORITY was defined twice
sugestion @samboneym commit 6202515
1 parent 5531aac commit b6a80bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arduino.DuinOS/FreeRTOSConfigATmega168P.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
2828
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE)
2929
#define configSETUP_PRIORITY HIGH_PRIORITY
30-
#define configSETUP_PRIORITY LOW_PRIORITY
30+
#define configLOOP_PRIORITY LOW_PRIORITY
3131

3232
/* Set the following definitions to 1 to include the API function, or zero
3333
to exclude the API function. */

arduino.DuinOS/FreeRTOSConfigATmega644.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
2828
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE)
2929
#define configSETUP_PRIORITY HIGH_PRIORITY
30-
#define configSETUP_PRIORITY LOW_PRIORITY
30+
#define configLOOP_PRIORITY LOW_PRIORITY
3131

3232
/* Set the following definitions to 1 to include the API function, or zero
3333
to exclude the API function. */

0 commit comments

Comments
 (0)