GNU Radio's SATNOGS Package
morse.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * gr-satnogs: SatNOGS GNU Radio Out-Of-Tree Module
4 *
5 * Copyright (C) 2016-2018
6 * Libre Space Foundation <http://librespacefoundation.org/>
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef INCLUDE_SATNOGS_MORSE_H_
23#define INCLUDE_SATNOGS_MORSE_H_
24
25/**
26 * The different Morse symbols
27 */
28typedef enum {
29 MORSE_DOT = 0, //!< Morse dot (.) symbol
30 MORSE_DASH, //!< Morse dash (-) symbol
31 MORSE_INTRA_SPACE, //!< Space between dot and dash symbols
32 MORSE_S_SPACE, //!< Morse short space between characters
33 MORSE_L_SPACE, //!< Morse long space between words
34 MORSE_END_MSG_SPACE //!< End of message
36
37
38#endif /* INCLUDE_SATNOGS_MORSE_H_ */
morse_symbol_t
Definition: morse.h:28
@ MORSE_DOT
Morse dot (.) symbol.
Definition: morse.h:29
@ MORSE_END_MSG_SPACE
End of message.
Definition: morse.h:34
@ MORSE_S_SPACE
Morse short space between characters.
Definition: morse.h:32
@ MORSE_INTRA_SPACE
Space between dot and dash symbols.
Definition: morse.h:31
@ MORSE_DASH
Morse dash (-) symbol.
Definition: morse.h:30
@ MORSE_L_SPACE
Morse long space between words.
Definition: morse.h:33