Blame view

codes/retour.c 1.39 KB
b21eaa0f   lahouass   code de libretour...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  #include <avr/io.h>
  #include <avr/interrupt.h>
  #include <util/delay.h>
  #include <string.h>
  #include <stdlib.h>
  #include <stdio.h>
  
  
  #define PRESCALER 1024
  #define TIME_SLOT 20
  #define BAUDRATE	103
  
  //// INIT SERIAL /////
  
  void init_serial(void)
  {
  	/* ACHTUNG : we suppose UBRR value < 0xff */
  	/* Not true in all case */
  	uint8_t baudrate = BAUDRATE;
  	/* Set baud rate */
  	UBRR0H = 0;
  	UBRR0L = baudrate;
  	
  	UCSR0B = (1<<TXEN0);
  	/* Set frame format */
  	UCSR0C = 0x06;
      
  }
  
  //// ENVOI DE MESSAGES /////
  
  void send_serial(unsigned char c)
  {
  	loop_until_bit_is_set(UCSR0A, UDRE0);
  	UDR0 = c;
  }
  
  
  void send_msg2(char Donnee[]){
   
      while (( UCSR0A & (1<<UDRE0))  == 0){};
              
              for (int i = 0; i < strlen(Donnee); i++){ 
                  while (( UCSR0A & (1<<UDRE0))  == 0){};
                  UDR0 = Donnee[i]; 
                  if (i == (strlen(Donnee) - 1)){
                      send_serial('\n');
                      send_serial('\r');
                  }
              } 
  }
  
  void send_msg(char Donnee[]){
          int i=0;
        for(i=0; i<strlen(Donnee); i++){
            if (i==strlen(Donnee)-1){
                send_serial(Donnee[i]);
                send_serial('\n');
                send_serial('\r');
          }
            else{
                send_serial(Donnee[i]);
          } 
          _delay_ms(100);
          }
  }
  
  //////// RETOUR /////////
  void retour(char* show_a){
          send_msg2(show_a);
  }