Subversion Repositories svnkaklik

Rev

Rev 410 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 410 Rev 460
Line 2... Line 2...
2
 
2
 
3
 
3
 
4
void main()
4
void main()
5
{
5
{
6
 
6
 
7
   setup_adc_ports(NO_ANALOGS|VSS_VDD);
7
   setup_adc_ports(NO_ANALOGS|VSS_VDD);   // parametry
8
   setup_adc(ADC_OFF);
8
   setup_adc(ADC_OFF);
9
   setup_spi(FALSE);
9
   setup_spi(FALSE);
10
   setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);
10
   setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);
11
   setup_timer_1(T1_DISABLED);
11
   setup_timer_1(T1_DISABLED);
12
   setup_timer_2(T2_DISABLED,0,1);
12
   setup_timer_2(T2_DISABLED,0,1);
Line 15... Line 15...
15
   setup_oscillator(False);
15
   setup_oscillator(False);
16
 
16
 
17
   while(true) // nekonecny cyklus
17
   while(true) // nekonecny cyklus
18
   {
18
   {
19
      output_high(PIN_B0);    // nastav B0 na 1
19
      output_high(PIN_B0);    // nastav B0 na 1
-
 
20
      Delay_ms(50);           // pockej 50ms
-
 
21
      output_high(PIN_B1);    // nastav B0 na 1
-
 
22
      Delay_ms(50);           // pockej 50ms
-
 
23
      output_high(PIN_B2);    // nastav B0 na 1
20
      Delay_ms(700);          // pockej 700ms
24
      Delay_ms(700);          // pockej 700ms
21
      output_low(PIN_B0);     //nastav B0 na 0
25
      output_low(PIN_B0);     //nastav B0 na 0
22
      Delay_ms(50);           // pockej 50ms
26
      Delay_ms(50);           // pockej 50ms
-
 
27
      output_low(PIN_B1);     //nastav B0 na 0
-
 
28
      Delay_ms(50);           // pockej 50ms
-
 
29
      output_low(PIN_B2);     //nastav B0 na 0
-
 
30
      Delay_ms(50);           // pockej 50ms
23
   }                       // opakuj cyklus
31
   }                       // opakuj cyklus
24
 
32
 
25
}
33
}