Rev 1528 | Rev 1533 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1528 | Rev 1532 | ||
|---|---|---|---|
| Line 4... | Line 4... | ||
| 4 | # External hardware can monitor the outputs and assert the diagnostics pin whenever the outputs must be turned off, to protect whatever is connected to them. |
4 | # External hardware can monitor the outputs and assert the diagnostics pin whenever the outputs must be turned off, to protect whatever is connected to them. |
| - | 5 | ||
| - | 6 | # Shall the output states be remembered in EEPROM? |
|
| - | 7 | # If this is disabled (0), outputs will be initialized |
|
| - | 8 | # to OFF state. |
|
| - | 9 | act_protectedOutput_EEPROM_ENABLED=1 |
|
| 5 | 10 | ||
| 6 | # Number of ouput pins. |
11 | # Number of ouput pins. |
| 7 |
|
12 | act_protectedOutput_CH_COUNT=1 |
| 8 | 13 | ||
| 9 | # Output pins. |
14 | # Output pins. |
| 10 |
|
15 | act_protectedOutput_CH0=GPIO_D5 |
| 11 |
|
16 | act_protectedOutput_CH1=GPIO_D1 |
| 12 |
|
17 | act_protectedOutput_CH2=GPIO_D7 |
| 13 |
|
18 | act_protectedOutput_CH3=GPIO_B0 |
| 14 | 19 | ||
| 15 | # Defines the |
20 | # Defines the polarity of each OUTPUT channel. 1 means output is active high, 0 means active low. |
| 16 |
|
21 | act_protectedOutput_CH0_POLARITY=1 |
| 17 |
|
22 | act_protectedOutput_CH1_POLARITY=1 |
| 18 |
|
23 | act_protectedOutput_CH2_POLARITY=0 |
| 19 |
|
24 | act_protectedOutput_CH3_POLARITY=1 |
| 20 | 25 | ||
| 21 | # Diagnostics pin. Asserted from external monitors if the outputs need to be disabled. |
26 | # Diagnostics pin. Asserted from external monitors if the outputs need to be disabled. |
| 22 | act_protectedOutput_DIAG_PIN=GPIO_D2 |
27 | act_protectedOutput_DIAG_PIN=GPIO_D2 |
| 23 | act_protectedOutput_DIAG_PIN_PCINT=<PCINT> |
28 | act_protectedOutput_DIAG_PIN_PCINT=<PCINT> |
| 24 | 29 | ||