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:
613:bc40b8d2aec4
Parent:
612:fba1c7dc54c0
Child:
614:9d86c2ae5de0
--- a/targets/hal/TARGET_Atmel/TARGET_SAM21/drivers/extint/extint_callback.h	Tue Aug 18 15:00:09 2015 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,62 +0,0 @@
-#ifndef EXTINT_CALLBACK_H_INCLUDED
-#define EXTINT_CALLBACK_H_INCLUDED
-
-#include <compiler.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * \addtogroup asfdoc_sam0_extint_group
- *
- * @{
- */
-
-/** \name Callback Configuration and Initialization
- * @{
- */
-
-/** Enum for the possible callback types for the EXTINT module. */
-enum extint_callback_type {
-    /** Callback type for when an external interrupt detects the configured
-     *  channel criteria (i.e. edge or level detection)
-     */
-    EXTINT_CALLBACK_TYPE_DETECT,
-};
-
-enum status_code extint_register_callback(
-    const extint_callback_t callback,
-    const uint8_t channel,
-    const enum extint_callback_type type);
-
-enum status_code extint_unregister_callback(
-    const extint_callback_t callback,
-    const uint8_t channel,
-    const enum extint_callback_type type);
-
-uint8_t extint_get_current_channel(void);
-
-/** @} */
-
-/** \name Callback Enabling and Disabling (Channel)
- * @{
- */
-
-enum status_code extint_chan_enable_callback(
-    const uint8_t channel,
-    const enum extint_callback_type type);
-
-enum status_code extint_chan_disable_callback(
-    const uint8_t channel,
-    const enum extint_callback_type type);
-
-/** @} */
-
-/** @} */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif