diff options
author | Damien George <damien.p.george@gmail.com> | 2017-02-15 16:39:30 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-02-15 16:39:30 +1100 |
commit | e5cc681cb1b5163b9ae3453df85344326baf9759 (patch) | |
tree | 200ae1f6b6387fbd12ee9dd3cc4223ca32cdd560 /stmhal/mphalport.c | |
parent | 05a4859585c4e0a55fca2e7467ba70da6453fdcb (diff) | |
download | micropython-e5cc681cb1b5163b9ae3453df85344326baf9759.tar.gz micropython-e5cc681cb1b5163b9ae3453df85344326baf9759.zip |
stmhal: Use generic interrupt char code.
Diffstat (limited to 'stmhal/mphalport.c')
-rw-r--r-- | stmhal/mphalport.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/stmhal/mphalport.c b/stmhal/mphalport.c index ca8e1c1bde..64c1164cc8 100644 --- a/stmhal/mphalport.c +++ b/stmhal/mphalport.c @@ -21,10 +21,6 @@ NORETURN void mp_hal_raise(HAL_StatusTypeDef status) { mp_raise_OSError(mp_hal_status_to_errno_table[status]); } -void mp_hal_set_interrupt_char(int c) { - usb_vcp_set_interrupt_char(c); -} - int mp_hal_stdin_rx_chr(void) { for (;;) { #if 0 |