Lines Matching +full:current +full:- +full:speed
6 * Copyright (c) 2019 - 2024 Nordic Semiconductor ASA
8 * SPDX-License-Identifier: Apache-2.0
37 * A characteristic value has changed while a Read Long Value Characteristic sub-procedure is in
45 * The playback speed (s) is calculated by the value of 2 to the power of p divided by 64.
46 * All values from -128 to 127 allowed, only some examples defined.
49 /** Minimum playback speed, resulting in 25 % speed */
50 #define BT_MCS_PLAYBACK_SPEED_MIN -128
51 /** Quarter playback speed, resulting in 25 % speed */
52 #define BT_MCS_PLAYBACK_SPEED_QUARTER -128
53 /** Half playback speed, resulting in 50 % speed */
54 #define BT_MCS_PLAYBACK_SPEED_HALF -64
55 /** Unity playback speed, resulting in 100 % speed */
57 /** Double playback speed, resulting in 200 % speed */
59 /** Max playback speed, resulting in 395.7 % speed (nearly 400 %) */
64 * @name Seeking speed
66 * The allowed values for seeking speed are the range -64 to -4
71 /** Maximum seeking speed - Can be negated */
73 /** Minimum seeking speed - Can be negated */
85 /** A single track is played repeatedly; the next track is the current track. */
113 /** A single track is played repeatedly; the next track is the current track. */
137 /** The current track is invalid, and no track has been selected. */
139 /** The media player is playing the current track. */
141 /** The current track is paused. The media player has a current track, but it is not being played */
143 /** The current track is fast forwarding or fast rewinding. */
151 /** Start playing the current track. */
153 /** Pause playing the current track. */
155 /** Fast rewind the current track. */
157 /** Fast forward the current track. */
160 * Stop current activity and return to the paused state and set the current track position to the
161 * start of the current track.
165 /** Set a new current track position relative to the current track position. */
169 * Set the current track position to the starting position of the previous segment of the current
174 * Set the current track position to the starting position of
175 * the next segment of the current track.
179 * Set the current track position to the starting position of
180 * the first segment of the current track.
184 * Set the current track position to the starting position of
185 * the last segment of the current track.
189 * Set the current track position to the starting position of
190 * the nth segment of the current track.
194 /** Set the current track to the previous track based on the playing order. */
196 /** Set the current track to the next track based on the playing order. */
198 /** Set the current track to the first track based on the playing order. */
200 /** Set the current track to the last track based on the playing order. */
202 /** Set the current track to the nth track based on the playing order. */
205 /** Set the current group to the previous group in the sequence of groups. */
207 /** Set the current group to the next group in the sequence of groups. */
209 /** Set the current group to the first group in the sequence of groups. */
211 /** Set the current group to the last group in the sequence of groups. */
213 /** Set the current group to the nth group in the sequence of groups. */