Subversion Repositories HomeAutomation

Rev

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
act_protectedOutput_NR_OUTPUT_PINS=1
12
act_protectedOutput_CH_COUNT=1
8
 
13
 
9
# Output pins.
14
# Output pins.
10
act_protectedOutput_OUTPUT0_PIN=GPIO_D5
15
act_protectedOutput_CH0=GPIO_D5
11
act_protectedOutput_OUTPUT1_PIN=GPIO_D1
16
act_protectedOutput_CH1=GPIO_D1
12
act_protectedOutput_OUTPUT2_PIN=GPIO_D7
17
act_protectedOutput_CH2=GPIO_D7
13
act_protectedOutput_OUTPUT3_PIN=GPIO_B0
18
act_protectedOutput_CH3=GPIO_B0
14
 
19
 
15
# Defines the ACTIVE state of the OUTPUT pin. 1 means output is active high, 0 means active low.
20
# Defines the polarity of each OUTPUT channel. 1 means output is active high, 0 means active low.
16
act_protectedOutput_OUTPUT0_PIN_ACTIVE_STATE=1
21
act_protectedOutput_CH0_POLARITY=1
17
act_protectedOutput_OUTPUT1_PIN_ACTIVE_STATE=1
22
act_protectedOutput_CH1_POLARITY=1
18
act_protectedOutput_OUTPUT2_PIN_ACTIVE_STATE=0
23
act_protectedOutput_CH2_POLARITY=0
19
act_protectedOutput_OUTPUT3_PIN_ACTIVE_STATE=1
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