/*
 * Include file with definition of tone_id.
 *
 * Copyright: 2011 PE1CID
 * Version:
 * 1.0 19-02-2011 Initial version
 */

#ifndef TONE_ID_H
#define TONE_ID_H

/* Definitions */

#define TONE_MAX_TONES     39

typedef enum
  {
    tone_no_tone = 0,
    tone_ctcss_A,
    tone_ctcss_B,
    tone_ctcss_C,
    tone_ctcss_D,
    tone_ctcss_E,
    tone_ctcss_F,
    tone_ctcss_G,
    tone_ctcss_H,
    tone_ctcss_I,
    tone_ctcss_J,
    tone_ctcss_K,
    tone_ctcss_L,
    tone_ctcss_M,
    tone_ctcss_N,
    tone_ctcss_O,
    tone_ctcss_P,
    tone_ctcss_Q,
    tone_ctcss_R,
    tone_ctcss_S,
    tone_ctcss_T,
    tone_ctcss_U,
    tone_ctcss_V,
    tone_ctcss_W,
    tone_ctcss_X,
    tone_ctcss_Y,
    tone_ctcss_Z,
    tone_ctcss_AA,
    tone_ctcss_AB,
    tone_ctcss_AC,
    tone_ctcss_AD,
    tone_ctcss_AE,
    tone_ctcss_AF,
    tone_ctcss_AG,
    tone_ctcss_AH,
    tone_ctcss_AI,
    tone_ctcss_AJ,
    tone_ctcss_AK,
    tone_ctcss_AL
  } Tone_Id;

/* Function prototypes */

#endif /* TONE_ID_H */

