aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-t/uk-Bressay
blob: c77bfb07cbf8e8b235944fe53ef6447a3da88ce9 (plain)
1
2
3
4
5
6
7
8
9
10
# UK, Bressay
# Auto-generated from http://www.dtg.org.uk/retailer/dtt_channels.html
# and http://www.ofcom.org.uk/static/reception_advice/index.asp.html
# T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy
T 474000000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
T 497833000 8MHz 2/3 NONE QAM64 2k 1/32 NONE
T 521833000 8MHz 2/3 NONE QAM64 2k 1/32 NONE
T 553833000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
T 834000000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
T 850000000 8MHz 3/4 NONE QAM16 2k 1/32 NONE
iable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef INPUT_H
#define	INPUT_H
#include <stdio.h>
#include <stdlib.h>
#include "machine_type.h"
#include "output.h"
#include <ncurses.h>
#include "datatypes.h"

#define KEYF1           0x0100
#define KEYF2           0x0101
#define KEYF3           0x0102
#define KEYF4           0x0103
#define KEYF5           0x0104
#define KEYF6           0x0105
#define KEYF7           0x0106
#define KEYF8           0x0107
#define KEYF9           0x0108
#define KEYF10          0x0109
#define KEYESC          0x010a
#define KEYBACKSPACE    0x010b
#define KEYDEL          0x010c
#define KEYENTER        0x010d
#define KEYTAB          0x010e
#define KEYUP           0x010f
#define KEYDOWN         0x0110
#define KEYLEFT         0x0111
#define KEYRIGHT        0x0112
#define KEYPGUP         0x0113
#define KEYPGDOWN       0x0114
#define KEYHOME         0x0115
#define KEYEND          0x0116

#define NUM_SPECIALKEYS	0x17


void initkeytab(tOutput* output);
tInt16 getkey(tKeyTab* pKeyTab,tBool inputfield);
tInt16 decinput(tOutput* output,tInt16 y,tInt16 x,tUInt64* val,tInt16 len);
tInt16 hexinput(tOutput* output,tInt16 y,tInt16 x,tUInt64* val,char* relative,tInt16 len);
tInt16 hexinput2(tOutput* output,tInt16 y,tInt16 x,char* s,tInt16* usedlen,tInt16 len);
tInt16 stringinput(tOutput* output,tInt16 y,tInt16 x,char* s,tInt16 len);
int configkeytab(tKeyTab* pKeyTab,char* line);
void keyboardsetup(tOutput* output,char* configfilename);

#endif