mirror of
https://github.com/eddyem/stm32samples.git
synced 2026-02-28 11:54:30 +03:00
fixed some problems with USART
This commit is contained in:
@@ -80,8 +80,7 @@ void can_messages_proc(){
|
||||
#ifdef EBUG
|
||||
SEND("got message, len: "); bufputchar('0' + len);
|
||||
SEND(", data: ");
|
||||
uint8_t ctr;
|
||||
for(ctr = 0; ctr < len; ++ctr){
|
||||
for(int ctr = 0; ctr < len; ++ctr){
|
||||
printuhex(can_mesg->data[ctr]);
|
||||
bufputchar(' ');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user