summaryrefslogtreecommitdiff
path: root/setup.c
blob: 28c348ed113e9400f3dce8446be7ac68a2216bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "setup.h"

cLcdSetup LcdSetup;

cLcdSetup::cLcdSetup(void)
{
  FullCycle   =  10;
  TimeCycle   =   7;
  VolumeKeep  =  15;
  Scrollwait  =  10;
  Scrollspeed =   3;
  Charmap     =   0;
  AltShift    =   0; 
  BackLight   =   1; 
  ClientPrioN = 128; 
  ClientPrioH =  16; 
  SetPrio     =   0; 
  BackLightWait = 0; 
  PrioWait    =   0; 
  OutputNumber   =  0;
  for (int i = 0; i < LCDMAXOUTPUTS; i++)
    OutputFunction[i] = 0;
}