Changeset 6136e28b in rtems
- Timestamp:
- 01/23/23 14:26:10 (4 months ago)
- Branches:
- master
- Children:
- 0340fd9
- Parents:
- 10ee41a8
- git-author:
- Sebastian Huber <sebastian.huber@…> (01/23/23 14:26:10)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (01/24/23 08:56:53)
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
bsps/arm/raspberrypi/clock/clockdrv.c
r10ee41a8 r6136e28b 2 2 * @file 3 3 * 4 * @ingroup bsp_clock4 * @ingroup RTEMSDriverClockImpl 5 5 * 6 * @brief Raspberry Pi clock support. 6 * @brief This source file contains the implementation of the BCM2835 Clock 7 * Driver. 7 8 */ 8 9 9 10 /* 10 * BCM2835 Clock driver11 *12 11 * Copyright (c) 2013 Alan Cudmore 13 12 * Copyright (c) 2016 Pavel Pisa -
bsps/or1k/generic_or1k/clock/clockdrv.c
r10ee41a8 r6136e28b 2 2 * @file 3 3 * 4 * @ingroup bsp_clock4 * @ingroup RTEMSDriverClockImpl 5 5 * 6 * @brief or1k clock support. 6 * @brief This source file contains the implementation of the or1k Clock 7 * Driver. 7 8 */ 8 9 9 10 /* 10 * generic_or1k Clock driver11 *12 11 * COPYRIGHT (c) 2014-2015 Hesham ALMatary <heshamelmatary@gmail.com> 13 12 * -
bsps/riscv/riscv/clock/clockdrv.c
r10ee41a8 r6136e28b 2 2 * @file 3 3 * 4 * @ingroup bsp_clock 5 * 6 * @brief riscv clock support. 4 * @ingroup RTEMSDriverClockImpl 5 * 6 * @brief This source file contains the implementation of the riscv Clock 7 * Driver. 7 8 */ 8 9 -
bsps/shared/dev/clock/clockimpl.h
r10ee41a8 r6136e28b 4 4 * @file 5 5 * 6 * @ingroup bsp_clock 7 * 8 * @brief Clock Tick Device Driver Shell 6 * @ingroup RTEMSDriverClockImpl 7 * 8 * @brief This header file contains the shared Clock Driver implementation. 9 * 10 * This header file shall only be included by a particular Clock Driver 11 * implementation source file. 9 12 */ 10 13 … … 45 48 #include <rtems/score/watchdogimpl.h> 46 49 50 /** 51 * @defgroup RTEMSDriverClockImpl Clock Driver Implementation 52 * 53 * @ingroup RTEMSDriverClock 54 * 55 * @brief This group contains the Clock Driver implementation. 56 */ 57 47 58 #ifdef Clock_driver_nanoseconds_since_last_tick 48 59 #error "Update driver to use the timecounter instead of nanoseconds extension" 49 60 #endif 50 61 51 /**52 * @defgroup bsp_clock Clock Support53 *54 * @ingroup RTEMSBSPsShared55 *56 * @brief Clock support57 *58 */59 62 #if CLOCK_DRIVER_USE_FAST_IDLE && CLOCK_DRIVER_ISRS_PER_TICK 60 63 #error "Fast Idle PLUS n ISRs per tick is not supported" -
cpukit/include/rtems/clockdrv.h
r10ee41a8 r6136e28b 6 6 * @ingroup RTEMSDriverClock 7 7 * 8 * @brief Clock Driver API 9 * 10 * This file defines the Clock Driver API. 8 * @brief This header file defines the Clock Driver API. 11 9 */ 12 10 … … 51 49 * @ingroup RTEMSDeviceDrivers 52 50 * 53 * @brief Th e Clock Driver API.51 * @brief This group contains the Clock Driver API. 54 52 * 55 53 * @{
Note: See TracChangeset
for help on using the changeset viewer.