Rev 3264 | Rev 3419 | ||
---|---|---|---|
Line 14... | Line 14... | ||
14 | #int_EXT |
14 | #int_EXT |
15 | void EXT_isr(void) |
15 | void EXT_isr(void) |
16 | { |
16 | { |
17 | if (sync==1) |
17 | if (sync==1) |
18 | { |
18 | { |
19 | output_high(SYNC_OUTPUT); |
19 | output_low(SYNC_OUTPUT); |
20 | output_toggle(LED2); |
20 | output_toggle(LED2); |
21 | delay_us(50); // na svvakove staci 5us v Upici bylo potreba energii zvednout |
21 | delay_us(50); // na svvakove staci 5us v Upici bylo potreba energii zvednout |
22 | output_low(SYNC_OUTPUT); |
22 | output_high(SYNC_OUTPUT); |
23 | sync=0; |
23 | sync=0; |
24 | } |
24 | } |
25 | output_toggle(LED3); |
25 | output_toggle(LED3); |
26 | } |
26 | } |
27 | |
27 | |