Subversion Repositories svnkaklik

Rev

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

Rev 460 Rev 489
Line 2... Line 2...
2
 
2
 
3
 
3
 
4
void main()
4
void main()
5
{
5
{
6
 
6
 
-
 
7
int i;
-
 
8
 
7
   setup_adc_ports(NO_ANALOGS|VSS_VDD);   // parametry
9
   setup_adc_ports(NO_ANALOGS|VSS_VDD);   // parametry
8
   setup_adc(ADC_OFF);
10
   setup_adc(ADC_OFF);
9
   setup_spi(FALSE);
11
   setup_spi(FALSE);
10
   setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);
12
   setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);
11
   setup_timer_1(T1_DISABLED);
13
   setup_timer_1(T1_DISABLED);
Line 14... Line 16...
14
   setup_vref(FALSE);
16
   setup_vref(FALSE);
15
   setup_oscillator(False);
17
   setup_oscillator(False);
16
 
18
 
17
   while(true) // nekonecny cyklus
19
   while(true) // nekonecny cyklus
18
   {
20
   {
19
      output_high(PIN_B0);    // nastav B0 na 1
21
      output_high(PIN_A4);    // nastav B0 na 1
20
      Delay_ms(50);           // pockej 50ms
22
      Delay_ms(50);           // pockej 50ms
21
      output_high(PIN_B1);    // nastav B0 na 1
23
      output_high(PIN_B1);    // nastav B0 na 1
22
      Delay_ms(50);           // pockej 50ms
24
      Delay_ms(50);           // pockej 50ms
23
      output_high(PIN_B2);    // nastav B0 na 1
25
      output_high(PIN_B2);    // nastav B0 na 1
-
 
26
 
-
 
27
      for(i=0;i<=100;i++)
-
 
28
      {
-
 
29
 
-
 
30
        Output_high(PIN_A2);
24
      Delay_ms(700);          // pockej 700ms
31
        Delay_ms(1);
-
 
32
        Output_low(PIN_A2);
-
 
33
        Delay_ms(1);
-
 
34
      }
-
 
35
 
25
      output_low(PIN_B0);     //nastav B0 na 0
36
      output_low(PIN_A4);     //nastav B0 na 0
26
      Delay_ms(50);           // pockej 50ms
37
      Delay_ms(50);           // pockej 50ms
27
      output_low(PIN_B1);     //nastav B0 na 0
38
      output_low(PIN_B1);     //nastav B0 na 0
28
      Delay_ms(50);           // pockej 50ms
39
      Delay_ms(50);           // pockej 50ms
29
      output_low(PIN_B2);     //nastav B0 na 0
40
      output_low(PIN_B2);     //nastav B0 na 0
30
      Delay_ms(50);           // pockej 50ms
41
      Delay_ms(50);           // pockej 50ms
31
   }                       // opakuj cyklus
42
   }                          // opakuj cyklus
32
 
43
 
33
}
44
}