mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Revision:
324:406fd2029f23
Parent:
168:cf9372ac0a74
--- a/targets/hal/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/drivers/interrupt/fsl_interrupt_manager.h	Mon Sep 15 15:30:06 2014 +0100
+++ b/targets/hal/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/drivers/interrupt/fsl_interrupt_manager.h	Thu Sep 18 14:00:17 2014 +0100
@@ -70,7 +70,7 @@
  * @param irqNumber IRQ number
  * @param handler   Interrupt handler routine address pointer
  */
-void interrupt_register_handler(IRQn_Type irqNumber, void (*handler)(void));
+void INT_SYS_InstallHandler(IRQn_Type irqNumber, void (*handler)(void));
 
 /*!
  * @brief Enables an interrupt for a given IRQ number. 
@@ -82,7 +82,7 @@
  *
  * @param irqNumber IRQ number
  */
-static inline void interrupt_enable(IRQn_Type irqNumber)
+static inline void INT_SYS_EnableIRQ(IRQn_Type irqNumber)
 {
     /* check IRQ number */
     assert(0 <= irqNumber);
@@ -101,7 +101,7 @@
  *
  * @param irqNumber IRQ number
  */
-static inline void interrupt_disable(IRQn_Type irqNumber)
+static inline void INT_SYS_DisableIRQ(IRQn_Type irqNumber)
 {
     /* check IRQ number */
     assert(0 <= irqNumber);
@@ -117,7 +117,7 @@
  * This function  enables the global interrupt by calling the core API.
  *
  */
-void interrupt_enable_global(void);
+void INT_SYS_EnableIRQGlobal(void);
 
 /*!
  * @brief Disable system interrupt. 
@@ -125,7 +125,7 @@
  * This function  disables the global interrupt by calling the core API.
  *
  */
-void interrupt_disable_global(void);
+void INT_SYS_DisableIRQGlobal(void);
 
 /*@}*/