File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/r3_support_rza1/src/os_timer Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use r3::kernel::{InterruptNum, InterruptPriority};
6
6
/// kernel trait type.
7
7
/// **Requires [`OsTimerOptions`] and [`Gic`].**
8
8
///
9
- /// [`PortTimer`]: r3::kernel ::PortTimer
9
+ /// [`PortTimer`]: r3_kernel ::PortTimer
10
10
/// [`Timer`]: r3_port_arm::Timer
11
11
/// [`Gic`]: r3_port_arm::Gic
12
12
///
Original file line number Diff line number Diff line change 49
49
. finish ( b) ;
50
50
}
51
51
52
- /// Implements [`crate ::Timer::init`]
52
+ /// Implements [`r3_port_arm ::Timer::init`]
53
53
#[ inline]
54
54
pub fn init < System : OsTimerInstance > ( ) {
55
55
let ostm = System :: ostm_regs ( ) ;
@@ -96,7 +96,7 @@ fn hw_tick_count<System: OsTimerInstance>() -> u32 {
96
96
System :: ostm_regs ( ) . cnt . read ( ) . bits ( )
97
97
}
98
98
99
- /// Implements [`r3::kernel ::PortTimer::tick_count`]
99
+ /// Implements [`r3_kernel ::PortTimer::tick_count`]
100
100
///
101
101
/// # Safety
102
102
///
@@ -111,7 +111,7 @@ pub unsafe fn tick_count<System: OsTimerInstance>() -> UTicks {
111
111
tstate. tick_count ( tcfg, hw_tick_count)
112
112
}
113
113
114
- /// Implements [`r3::kernel ::PortTimer::pend_tick`]
114
+ /// Implements [`r3_kernel ::PortTimer::pend_tick`]
115
115
///
116
116
/// # Safety
117
117
///
@@ -121,7 +121,7 @@ pub unsafe fn pend_tick<Traits: OsTimerInstance>() {
121
121
let _ = InterruptLine :: < System < Traits > > :: from_num ( Traits :: INTERRUPT_OSTM ) . pend ( ) ;
122
122
}
123
123
124
- /// Implements [`r3::kernel ::PortTimer::pend_tick_after`]
124
+ /// Implements [`r3_kernel ::PortTimer::pend_tick_after`]
125
125
///
126
126
/// # Safety
127
127
///
You can’t perform that action at this time.
0 commit comments