Skip to content

Commit bfa49e1

Browse files
committed
ATmegaxxxx - whitespace
1 parent 7a9398e commit bfa49e1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

portable/GCC/ATmegaxxxx/port.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,6 @@ uint16_t usAddress;
559559
* In order to do this properly, we would need to get a full 3-byte pointer to
560560
* pxCode. That requires a change to GCC. Not likely to happen any time soon.
561561
*/
562-
563562
*pxTopOfStack = 0;
564563
pxTopOfStack--;
565564
#endif

portable/GCC/ATmegaxxxx/portmacro.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ extern "C" {
4343
*/
4444

4545
/* Type definitions. */
46+
4647
#define portCHAR char
4748
#define portFLOAT float
4849
#define portDOUBLE double
@@ -63,6 +64,7 @@ typedef uint8_t UBaseType_t;
6364
/*-----------------------------------------------------------*/
6465

6566
/* Critical section management. */
67+
6668
#define portENTER_CRITICAL() __asm__ __volatile__ ( \
6769
"in __tmp_reg__, __SREG__" "\n\t" \
6870
"cli" "\n\t" \
@@ -118,7 +120,7 @@ typedef uint8_t UBaseType_t;
118120
#if defined( portUSE_WDTO )
119121
#define portTICK_PERIOD_MS ( (TickType_t) _BV( portUSE_WDTO + 4 ) )
120122
#else
121-
#define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
123+
#define portTICK_PERIOD_MS ( (TickType_t) 1000 / configTICK_RATE_HZ )
122124
#endif
123125

124126
#define portBYTE_ALIGNMENT 1

0 commit comments

Comments
 (0)