diff options
author | Christian Pointner <equinox@mur.at> | 2013-07-02 20:14:15 +0000 |
---|---|---|
committer | Christian Pointner <equinox@mur.at> | 2013-07-02 20:14:15 +0000 |
commit | 55275ff2d46c82ffc7d955e585d2554b6411e9d3 (patch) | |
tree | 7c3749dec1c902f75d1003185fe1b5469e76631c | |
parent | removed ds30_loader (diff) |
fixed overrun error
git-svn-id: https://svn.spreadspace.org/mur.sat@805 7de4ea59-55d0-425e-a1af-a3118ea81d4c
-rw-r--r-- | software/ihu/ihu.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/software/ihu/ihu.asm b/software/ihu/ihu.asm index 95ac051..e7c1e5e 100644 --- a/software/ihu/ihu.asm +++ b/software/ihu/ihu.asm @@ -155,7 +155,7 @@ int_uart_rx call uart_rx_byte btfsc PIR1,RCIF call uart_rx_byte - btfss RCSTA,OERR + btfsc RCSTA,OERR goto int_uart_rx_oe goto interrupt_end |