Révision 726
Ajouté par begresset il y a presque 4 ans
branch/gresset/sp4c12/SP4C12/SP4C12.c | ||
---|---|---|
|
||
void uart0_init(void){
|
||
u0mr=0b00000101;
|
||
u0brg=0b00100000;
|
||
u0c0=0b00010001;
|
||
u0c1=0b00000101;
|
||
u0brg=0b00100000;
|
||
pd6=0b00001000;
|
||
u0c1=0b00000101;
|
||
pd6=0b00011000;
|
||
ps0=0b00001000;
|
||
}
|
||
|
||
void
|
||
void uart0_tx(char c){
|
||
while (ti_u0c1!=1){
|
||
u0tb=c;
|
||
}
|
||
}
|
||
|
||
|
||
void main(void)
|
||
{
|
||
|
||
uart0_init();
|
||
while (1)
|
||
{
|
||
uart0_tx ('c');
|
||
}
|
||
}
|
Formats disponibles : Unified diff
séance c1.