14 lines
No EOL
389 B
C
14 lines
No EOL
389 B
C
/*
|
|
* saisieuart.h
|
|
*
|
|
* Created: 18/05/2021 15:40:59
|
|
* Author: yboujon1
|
|
*/
|
|
|
|
#include "main.h"
|
|
|
|
#define UBRR_THEO 23 //soit 9600 Bauds
|
|
#define MAX 200 //max de caractère pour la saisie
|
|
void uart_init(unsigned int ubrr); //initialisation de l'uart
|
|
char uart_getchar(void); //reception de l'uart
|
|
void saisie(char *tab, int* n); //saisie de la chaine de char
|