Skip to content
This repository was archived by the owner on Apr 13, 2021. It is now read-only.

Commit 1c19883

Browse files
committed
Merge pull request #309 from ljbade/fix-doxygen
Replace | with \ in ephemeris.c doxygen
2 parents 44d1430 + ef5a30b commit 1c19883

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ephemeris.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ u8 satellite_healthy(const ephemeris_t *eph)
291291

292292
/** Convert a GPS URA index into a value.
293293
*
294-
* |param index URA index.
295-
* |return the URA in meters.
294+
* \param index URA index.
295+
* \return the URA in meters.
296296
*/
297297
float decode_ura_index(const u8 index) {
298298
static float values[16] = {
@@ -319,9 +319,9 @@ float decode_ura_index(const u8 index) {
319319

320320
/** Calculate the GPS ephemeris curve fit interval.
321321
*
322-
* |param fit_interval_flag The curve fit interval flag. 0 is 4 hours, 1 is >4 hours.
323-
* |param iodc The IODC value.
324-
* |return the curve fit interval in hours.
322+
* \param fit_interval_flag The curve fit interval flag. 0 is 4 hours, 1 is >4 hours.
323+
* \param iodc The IODC value.
324+
* \return the curve fit interval in hours.
325325
*/
326326
u8 decode_fit_interval(u8 fit_interval_flag, u16 iodc) {
327327
u8 fit_interval = 4;

0 commit comments

Comments
 (0)