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: TYBLE16_simple_data_logger TYBLE16_MP3_Air
Diff: drivers/Timeout.h
- Revision:
- 1:9db0e321a9f4
- Parent:
- 0:5b88d5760320
--- a/drivers/Timeout.h Tue Dec 17 23:23:45 2019 +0000 +++ b/drivers/Timeout.h Tue Dec 31 06:02:27 2019 +0000 @@ -1,5 +1,5 @@ /* mbed Microcontroller Library - * Copyright (c) 2006-2013 ARM Limited + * Copyright (c) 2006-2019 ARM Limited * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -19,10 +19,13 @@ #include "drivers/Ticker.h" #include "platform/NonCopyable.h" -#include "platform/mbed_power_mgmt.h" namespace mbed { -/** \addtogroup drivers */ +/** + * \defgroup drivers_Timeout Timeout class + * \ingroup drivers-public-api-ticker + * @{ + */ /** A Timeout is used to call a function at a point in the future * @@ -53,7 +56,6 @@ * } * } * @endcode - * @ingroup drivers */ class Timeout : public Ticker, private NonCopyable<Timeout> { @@ -63,6 +65,8 @@ #endif }; +/** @}*/ + } // namespace mbed #endif