git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4176 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
d0a2e55ed0
commit
2a2b5fd348
|
@ -130,7 +130,7 @@ void test_print(const char *msgp) {
|
||||||
void test_println(const char *msgp) {
|
void test_println(const char *msgp) {
|
||||||
|
|
||||||
test_print(msgp);
|
test_print(msgp);
|
||||||
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 1);
|
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -311,7 +311,7 @@ static void print_line(void) {
|
||||||
|
|
||||||
for (i = 0; i < 76; i++)
|
for (i = 0; i < 76; i++)
|
||||||
_putc(chp, '-');
|
_putc(chp, '-');
|
||||||
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 1);
|
chSequentialStreamWrite(chp, (const uint8_t *)"\r\n", 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue