]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/portable/MPLAB/PIC32MZ/portmacro.h
Kernel changes to improve power saving:
[freertos] / FreeRTOS / Source / portable / MPLAB / PIC32MZ / portmacro.h
index 95d13b87a7c02888572bf947de2b6153311aba5e..86bd8b0c43702d672766d5a0d92ec9a3749aa2eb 100644 (file)
@@ -137,7 +137,7 @@ ensure API function and interrupt entry is as fast and as simple as possible. */
 #ifdef configASSERT\r
        #define portDISABLE_INTERRUPTS()                                                                                        \\r
        {                                                                                                                                                       \\r
-       uint32_t ulStatus;                                                                                                              \\r
+       uint32_t ulStatus;                                                                                                                      \\r
                                                                                                                                                                \\r
                /* Mask interrupts at and below the kernel interrupt priority. */               \\r
                ulStatus = _CP0_GET_STATUS();                                                                                   \\r
@@ -152,7 +152,7 @@ ensure API function and interrupt entry is as fast and as simple as possible. */
 #else /* configASSERT */\r
        #define portDISABLE_INTERRUPTS()                                                                                \\r
        {                                                                                                                                               \\r
-       uint32_t ulStatus;                                                                                                      \\r
+       uint32_t ulStatus;                                                                                                              \\r
                                                                                                                                                        \\r
                /* Mask interrupts at and below the kernel interrupt priority. */       \\r
                ulStatus = _CP0_GET_STATUS();                                                                           \\r
@@ -163,7 +163,7 @@ ensure API function and interrupt entry is as fast and as simple as possible. */
 \r
 #define portENABLE_INTERRUPTS()                                                                                        \\r
 {                                                                                                                                              \\r
-uint32_t ulStatus;                                                                                                     \\r
+uint32_t ulStatus;                                                                                                             \\r
                                                                                                                                                \\r
        /* Unmask all interrupts. */                                                                            \\r
        ulStatus = _CP0_GET_STATUS();                                                                           \\r
@@ -210,7 +210,7 @@ extern void vPortClearInterruptMaskFromISR( UBaseType_t );
 \r
 #define portYIELD()                                                            \\r
 {                                                                                              \\r
-uint32_t ulCause;                                                      \\r
+uint32_t ulCause;                                                              \\r
                                                                                                \\r
        /* Trigger software interrupt. */                       \\r
        ulCause = _CP0_GET_CAUSE();                                     \\r