git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@479 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
dbe47e931a
commit
6bb6b521f5
|
@ -74,9 +74,10 @@ interrupt(USART0RX_VECTOR) u0rxirq(void) {
|
||||||
*/
|
*/
|
||||||
static void OutNotify1(void) {
|
static void OutNotify1(void) {
|
||||||
|
|
||||||
if (!(U0IE & UTXIE0))
|
if (!(U0IE & UTXIE0)) {
|
||||||
U0TXBUF = (uint8_t)chFDDRequestDataI(&COM1);
|
U0TXBUF = (uint8_t)chFDDRequestDataI(&COM1);
|
||||||
U0IE |= UTXIE0;
|
U0IE |= UTXIE0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -140,9 +141,10 @@ interrupt(USART1RX_VECTOR) u1rxirq(void) {
|
||||||
*/
|
*/
|
||||||
static void OutNotify2(void) {
|
static void OutNotify2(void) {
|
||||||
|
|
||||||
if (!(U1IE & UTXIE1))
|
if (!(U1IE & UTXIE1)) {
|
||||||
U1TXBUF = (uint8_t)chFDDRequestDataI(&COM2);
|
U1TXBUF = (uint8_t)chFDDRequestDataI(&COM2);
|
||||||
U1IE |= UTXIE1;
|
U1IE |= UTXIE1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -74,6 +74,7 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 0.7.3 ***
|
*** 0.7.3 ***
|
||||||
|
- Small optimization to the MSP430 serial driver.
|
||||||
- Removed the performance spreadsheet (it was *very* old) and added a
|
- Removed the performance spreadsheet (it was *very* old) and added a
|
||||||
directory containing the test reports ./docs/reports.
|
directory containing the test reports ./docs/reports.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue