|
27 | 27 | // "-" left justify, "39" minimum width of name, pad with blanks |
28 | 28 |
|
29 | 29 | /** |
30 | | - * This routine minimizes RAM usage by creating a FLASH resident array to |
31 | | - * store the pin names, pin numbers and analog/digital flag. |
| 30 | + * This routine minimizes RAM usage by creating a FLASH resident array to |
| 31 | + * store the pin names, pin numbers and analog/digital flag. |
32 | 32 | * |
33 | | - * Creating the array in FLASH is a two pass process. The first pass puts the |
34 | | - * name strings into FLASH. The second pass actually creates the array. |
| 33 | + * Creating the array in FLASH is a two pass process. The first pass puts the |
| 34 | + * name strings into FLASH. The second pass actually creates the array. |
35 | 35 | * |
36 | | - * Both passes use the same pin list. The list contains two macro names. The |
37 | | - * actual macro definitions are changed depending on which pass is being done. |
| 36 | + * Both passes use the same pin list. The list contains two macro names. The |
| 37 | + * actual macro definitions are changed depending on which pass is being done. |
38 | 38 | */ |
39 | 39 |
|
40 | 40 | // first pass - put the name strings into FLASH |
@@ -90,12 +90,12 @@ typedef struct { |
90 | 90 | const PinInfo pin_array[] PROGMEM = { |
91 | 91 |
|
92 | 92 | /** |
93 | | - * [pin name] [pin number] [is digital or analog] 1 = digital, 0 = analog |
94 | | - * Each entry takes up 6 bytes in FLASH: |
95 | | - * 2 byte pointer to location of the name string |
96 | | - * 2 bytes containing the pin number |
97 | | - * analog pin numbers were converted to digital when the array was created |
98 | | - * 2 bytes containing the digital/analog bool flag |
| 93 | + * [pin name] [pin number] [is digital or analog] 1 = digital, 0 = analog |
| 94 | + * Each entry takes up 6 bytes in FLASH: |
| 95 | + * 2 byte pointer to location of the name string |
| 96 | + * 2 bytes containing the pin number |
| 97 | + * analog pin numbers were converted to digital when the array was created |
| 98 | + * 2 bytes containing the digital/analog bool flag |
99 | 99 | */ |
100 | 100 |
|
101 | 101 | #if SERIAL_IN_USE(0) |
|
0 commit comments