# DVB-T Erfurt-Weimar
# T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy
T 474000000 8MHz 2/3 NONE QAM16 8k 1/4 NONE # Kanal 21, ARD, arte, Phoenix, Eins festival
T 522000000 8MHz 2/3 NONE QAM16 8k 1/8 NONE # Kanal 27, MDR Thüringen, rbb, WDR, hr
T 706000000 8MHz 2/3 NONE QAM16 8k 1/8 NONE # Kanal 50, ZDF, ZDF info / 3sat, KiKA / ZDF doku, MHP
'cgit'>
blob: 0bf5bb3c8754542860087f6d7f7411a74fdba59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef MENU_H
#define MENU_H
#include <stdio.h>
#include "machine_type.h"
#include "config.h"
#include "output.h"
#include "datatypes.h"
void clearMenu(tMenu* Menu);
void newMenuItem(tMenu* Menu,char* text,tUInt16 y,tUInt16 x,char hotkey,tBool active,tInt8* itemnum);
void printMenu(tOutput* output,tMenu* Menu,tUInt16 offsy,tUInt16 offsx);
void MenuMoveLeft(tMenu* Menu);
void MenuMoveRight(tMenu* Menu);
void MenuMoveUp(tMenu* Menu);
void MenuMoveDown(tMenu* Menu);
void MenuSetActiveItem(tMenu* Menu,tInt8 itemnum);
tInt8 MenuInteract(tOutput* output,tMenu* Menu,tInt16 offsy,tInt16 offsx);
#endif
|