Skip to content

Commit 8bdfe88

Browse files
committed
Correção nas constantes que define prioridade do Loop e Setup.
1 parent 8ed11c4 commit 8bdfe88

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

arduino.DuinOS.AVR/FreeRTOSConfigATmega1280.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/* setup() and loop() parameters */
2727
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
2828
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE)
29-
#define configSETUP_PRIORITY HIGH_PRIORITY;
30-
#define configLOOP_PRIORITY LOW_PRIORITY;
29+
#define configSETUP_PRIORITY HIGH_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.AVR/FreeRTOSConfigATmega1284P.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/* setup() and loop() parameters */
2727
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
2828
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE)
29-
#define configSETUP_PRIORITY HIGH_PRIORITY;
30-
#define configLOOP_PRIORITY LOW_PRIORITY;
29+
#define configSETUP_PRIORITY HIGH_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.AVR/FreeRTOSConfigATmega168P.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/* setup() and loop() parameters */
2727
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
2828
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE)
29-
#define configSETUP_PRIORITY HIGH_PRIORITY;
30-
#define configSETUP_PRIORITY LOW_PRIORITY;
29+
#define configSETUP_PRIORITY HIGH_PRIORITY
30+
#define configSETUP_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.AVR/FreeRTOSConfigATmega2560.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
/* setup() and loop() parameters */
2525
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 4)
2626
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
27-
#define configSETUP_PRIORITY HIGH_PRIORITY;
28-
#define configLOOP_PRIORITY LOW_PRIORITY;
27+
#define configSETUP_PRIORITY HIGH_PRIORITY
28+
#define configLOOP_PRIORITY LOW_PRIORITY
2929

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

arduino.DuinOS.AVR/FreeRTOSConfigATmega328P.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/* setup() and loop() parameters */
2727
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
2828
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE)
29-
#define configSETUP_PRIORITY HIGH_PRIORITY;
30-
#define configSETUP_PRIORITY LOW_PRIORITY;
29+
#define configSETUP_PRIORITY HIGH_PRIORITY
30+
#define configSETUP_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.AVR/FreeRTOSConfigATmega644.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/* setup() and loop() parameters */
2727
#define configSETUP_STACK_SIZE (configMINIMAL_STACK_SIZE * 2)
2828
#define configLOOP_STACK_SIZE (configMINIMAL_STACK_SIZE)
29-
#define configSETUP_PRIORITY HIGH_PRIORITY;
30-
#define configSETUP_PRIORITY LOW_PRIORITY;
29+
#define configSETUP_PRIORITY HIGH_PRIORITY
30+
#define configSETUP_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)