Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Frequency_Counter_w_GPS_1PPS FreqCntr_GPS1PPS_F746F4xx_w_recipro
Fork of iSerial by
iSerial_LPC11U24.h
00001 #if defined(TARGET_LPC11U24) 00002 00003 void 00004 iSerial::enable_uart_irq(void) 00005 { 00006 switch(tx) { 00007 case USBTX: 00008 NVIC_EnableIRQ(UART_IRQn); 00009 break; 00010 case p9: 00011 NVIC_EnableIRQ(UART_IRQn); 00012 break; 00013 } 00014 } 00015 00016 void 00017 iSerial::disable_uart_irq(void) 00018 { 00019 switch(tx) { 00020 case USBTX: 00021 NVIC_DisableIRQ(UART_IRQn); 00022 break; 00023 case p9: 00024 NVIC_DisableIRQ(UART_IRQn); 00025 break; 00026 } 00027 } 00028 00029 #endif
Generated on Wed Jul 13 2022 12:22:36 by
1.7.2
