summaryrefslogtreecommitdiffstats
path: root/apps/settings.c
blob: e5fbfb5e06f739af249ff6cf1d0aa4382177f631 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2002 by wavey@wavey.org
 * RTC config saving code (C) 2002 by hessu@hes.iki.fi
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include <stdio.h>
#include "config.h"
#include "kernel.h"
#include "thread.h"
#include "settings.h"
#include "disk.h"
#include "panic.h"
#include "debug.h"
#include "button.h"
#include "usb.h"
#include "backlight.h"
#include "lcd.h"
#include "mpeg.h"
#include "string.h"
#include "ata.h"
#include "fat.h"
#include "power.h"
#include "backlight.h"
#include "powermgmt.h"
#include "status.h"
#include "atoi.h"
#include "screens.h"
#include "ctype.h"
#include "file.h"
#include "errno.h"
#include "system.h"
#include "misc.h"
#ifdef HAVE_LCD_BITMAP
#include "icons.h"
#include "font.h"
#include "peakmeter.h"
#include "hwcompat.h"
#endif
#include "lang.h"
#include "language.h"
#include "wps-display.h"
#include "powermgmt.h"
#include "sprintf.h"
#include "keyboard.h"
#include "version.h"

struct user_settings global_settings;
char rockboxdir[] = ROCKBOX_DIR;       /* config/font/data file directory */

#define CONFIG_BLOCK_VERSION 7
#define CONFIG_BLOCK_SIZE 512
#define RTC_BLOCK_SIZE 44

#ifdef HAVE_LCD_BITMAP
#define MAX_LINES 10
#else
#define MAX_LINES 2
#endif

/********************************************

Config block as saved on the battery-packed RTC user RAM memory block
of 44 bytes, starting at offset 0x14 of the RTC memory space.

offset  abs
0x00    0x14    "Roc"   header signature: 0x52 0x6f 0x63
0x03    0x17    <version byte: 0x0>
0x04    0x18    <volume byte>
0x05    0x19    <balance byte>
0x06    0x1a    <bass byte>
0x07    0x1b    <treble byte>
0x08    0x1c    <loudness byte>
0x09    0x1d    <bass boost byte>
0x0a    0x1e    <contrast (bit 0-5), invert bit (bit 6), show_icons (bit 7)>
0x0b    0x1f    <backlight_on_when_charging, invert_cursor, backlight_timeout>
0x0c    0x20    <poweroff timer byte>
0x0d    0x21    <resume settings byte>
0x0e    0x22    <shuffle,dirfilter,sort_case,discharge,statusbar,show_hidden,
                 scroll bar>
0x0f    0x23    <volume type, battery type, timeformat, scroll speed>
0x10    0x24    <ff/rewind min step, acceleration rate>
0x11    0x25    <AVC, channel config>
0x12    0x26    <(int) Resume playlist index, or -1 if no playlist resume>
0x16    0x2a    <(int) Byte offset into resume file>
0x1a    0x2e    <time until disk spindown>
0x1b    0x2f    <browse current, play selected, recursive dir insert>
0x1c    0x30    <peak meter hold timeout (bit 0-4),
                 rec_editable (bit 7)>
0x1d    0x31    <unused>
0x21    0x35    <repeat mode (bit 0-1), rec. channels (bit 2),
                 mic gain (bit 4-7)>
0x22    0x36    <rec. quality (bit 0-2), source (bit 3-4), frequency (bit 5-7)>
0x23    0x37    <rec. left gain (bit 0-3)>
0x24    0x38    <rec. right gain (bit 0-3)>
0x25    0x39    <disk poweroff flag (bit 0), MP3 buffer margin (bit 1-3),
                 Trickle charge flag (bit 4)>
0x26    0x40    <runtime low byte>
0x27    0x41    <runtime high byte>
0x28    0x42    <topruntime low byte>
0x29    0x43    <topruntime high byte>

0x2a    <checksum 2 bytes: xor of 0x0-0x29>

Config memory is reset to 0xff and initialized with 'factory defaults' if
a valid header & checksum is not found. Config version number is only
increased when information is _relocated_ or space is _reused_ so that old
versions can read and modify configuration changed by new versions. New
versions should check for the value of '0xff' in each config memory
location used, and reset the setting in question with a factory default if
needed. Memory locations not used by a given version should not be
modified unless the header & checksum test fails.


Rest of config block, only saved to disk:
0xA8  (char)jump scroll mode (only for player)
0xA9  (char)jump scroll delay (only for player)
0xAA  Max number of files in playlist (1000-20000)
0xAC  Max number of files in dir (50-10000)
0xAE  fade on pause/unpause/stop setting (bit 0)
      caption backlight (bit 1)
0xB0  peak meter clip hold timeout (bit 0-4), peak meter performance (bit 7)
0xB1  peak meter release step size, peak_meter_dbfs (bit 7)
0xB2  peak meter min either in -db or in percent
0xB3  peak meter max either in -db or in percent
0xB4  battery capacity
0xB5  scroll step in pixels
0xB6  scroll start and endpoint delay
0xB7  bidir scroll setting (bidi if 0-200% longer than screen width)
0xB8  (char[20]) WPS file
0xCC  (char[20]) Lang file
0xE0  (char[20]) Font file
0xF4  <unused>
0xF8  <unused>
0xFC  <unused>

*************************************/

#include "rtc.h"
static unsigned char config_block[CONFIG_BLOCK_SIZE];

/*
 * Calculates the checksum for the config block and returns it
 */

static unsigned short calculate_config_checksum(unsigned char* buf)
{
    unsigned int i;
    unsigned char cksum[2];
    cksum[0] = cksum[1] = 0;
    
    for (i=0; i < RTC_BLOCK_SIZE - 2; i+=2 ) {
        cksum[0] ^= buf[i];
        cksum[1] ^= buf[i+1];
    }

    return (cksum[0] << 8) | cksum[1];
}

/*
 * initialize the config block buffer
 */
static void init_config_buffer( void )
{
    DEBUGF( "init_config_buffer()\n" );
    
    /* reset to 0xff - all unused */
    memset(config_block, 0xff, CONFIG_BLOCK_SIZE);
    /* insert header */
    config_block[0] = 'R';
    config_block[1] = 'o';
    config_block[2] = 'c';
    config_block[3] = CONFIG_BLOCK_VERSION;
}

/*
 * save the config block buffer to disk or RTC RAM
 */
static int save_config_buffer( void )
{
    unsigned short chksum;
#ifdef HAVE_RTC
    unsigned int i;
#endif

    DEBUGF( "save_config_buffer()\n" );
    
    /* update the checksum in the end of the block before saving */
    chksum = calculate_config_checksum(config_block);
    config_block[ RTC_BLOCK_SIZE - 2 ] = chksum >> 8;
    config_block[ RTC_BLOCK_SIZE - 1 ] = chksum & 0xff;

#ifdef HAVE_RTC    
    /* FIXME: okay, it _would_ be cleaner and faster to implement rtc_write so
       that it would write a number of bytes at a time since the RTC chip
       supports that, but this will have to do for now 8-) */
    for (i=0; i < RTC_BLOCK_SIZE; i++ ) {
        int r = rtc_write(0x14+i, config_block[i]);
        if (r) {
            DEBUGF( "save_config_buffer: rtc_write failed at addr 0x%02x: %d\n",
                    14+i, r );
            return r;
        }
    }

#endif

    if (fat_startsector() != 0)
        ata_delayed_write( 61, config_block);
    else
        return -1;

    return 0;
}

/*
 * load the config block buffer from disk or RTC RAM
 */
static int load_config_buffer( void )
{
    unsigned short chksum;
    bool correct = false;

#ifdef HAVE_RTC
    unsigned int i;
    unsigned char rtc_block[RTC_BLOCK_SIZE];
#endif
    
    DEBUGF( "load_config_buffer()\n" );

    if (fat_startsector() != 0) {
        ata_read_sectors( 61, 1,  config_block);

        /* calculate the checksum, check it and the header */
        chksum = calculate_config_checksum(config_block);
        
        if (config_block[0] == 'R' &&
            config_block[1] == 'o' &&
            config_block[2] == 'c' &&
            config_block[3] == CONFIG_BLOCK_VERSION &&
            (chksum >> 8) == config_block[RTC_BLOCK_SIZE - 2] &&
            (chksum & 0xff) == config_block[RTC_BLOCK_SIZE - 1])
        {
            DEBUGF( "load_config_buffer: header & checksum test ok\n" );
            correct = true;
        }
    }

#ifdef HAVE_RTC    
    /* read rtc block */
    for (i=0; i < RTC_BLOCK_SIZE; i++ )
        rtc_block[i] = rtc_read(0x14+i);

    chksum = calculate_config_checksum(rtc_block);
    
    /* if rtc block is ok, use that */
    if (rtc_block[0] == 'R' &&
        rtc_block[1] == 'o' &&
        rtc_block[2] == 'c' &&
        rtc_block[3] == CONFIG_BLOCK_VERSION &&
        (chksum >> 8) == rtc_block[RTC_BLOCK_SIZE - 2] &&
        (chksum & 0xff) == rtc_block[RTC_BLOCK_SIZE - 1])
    {
        memcpy(config_block, rtc_block, RTC_BLOCK_SIZE);
        correct = true;
    }
#endif
    
    if ( !correct ) {
        /* if checksum is not valid, clear the config buffer */
        DEBUGF( "load_config_buffer: header & checksum test failed\n" );
        init_config_buffer();
        return -1;
    }

    return 0;
}

/*
 * persist all runtime user settings to disk or RTC RAM
 */
int settings_save( void )
{
    DEBUGF( "settings_save()\n" );
    
    /* update the config block buffer with current
       settings and save the block in the RTC */
    config_block[0x4] = (unsigned char)global_settings.volume;
    config_block[0x5] = (char)global_settings.balance;
    config_block[0x6] = (unsigned char)global_settings.bass;
    config_block[0x7] = (unsigned char)global_settings.treble;
    config_block[0x8] = (unsigned char)global_settings.loudness;
    config_block[0x9] = (unsigned char)global_settings.bass_boost;
    
    config_block[0xa] = (unsigned char)
      ((global_settings.contrast & 0x3f) |
       (global_settings.invert ? 0x40 : 0) |
       (global_settings.show_icons ? 0x80 : 0) );

    config_block[0xb] = (unsigned char)
        ((global_settings.backlight_on_when_charging?0x40:0) |
         (global_settings.invert_cursor ? 0x20 : 0) |
         (global_settings.backlight_timeout & 0x1f));
    config_block[0xc] = (unsigned char)global_settings.poweroff;
    config_block[0xd] = (unsigned char)global_settings.resume;
    
    config_block[0xe] = (unsigned char)
        ((global_settings.playlist_shuffle & 1) |
         ((global_settings.dirfilter & 1) << 1) |
         ((global_settings.sort_case & 1) << 2) |
         ((global_settings.discharge & 1) << 3) |
         ((global_settings.statusbar & 1) << 4) |
         ((global_settings.dirfilter & 2) << 4) |
         ((global_settings.scrollbar & 1) << 6));
    
    config_block[0xf] = (unsigned char)
        ((global_settings.volume_type & 1) |
         ((global_settings.battery_type & 1) << 1) |
         ((global_settings.timeformat & 1)   << 2) |
         ( global_settings.scroll_speed      << 3));
    
    config_block[0x10] = (unsigned char)
        ((global_settings.ff_rewind_min_step & 15) << 4 |
         (global_settings.ff_rewind_accel & 15));

    config_block[0x11] = (unsigned char)
        ((global_settings.avc & 0x03) | 
         ((global_settings.channel_config & 0x07) << 2));

    memcpy(&config_block[0x12], &global_settings.resume_index, 4);
    memcpy(&config_block[0x16], &global_settings.resume_offset, 4);
    DEBUGF( "+Resume index %X offset %X\n",
            global_settings.resume_index,
            global_settings.resume_offset );

    config_block[0x1a] = (unsigned char)global_settings.disk_spindown;
    config_block[0x1b] = (unsigned char)
        (((global_settings.browse_current & 1)) |
         ((global_settings.play_selected & 1) << 1) |
         ((global_settings.recursive_dir_insert & 1) << 2));
    
    config_block[0x1c] = (unsigned char)global_settings.peak_meter_hold |
        (global_settings.rec_editable?0x80:0);

    config_block[0x21] = (unsigned char)
        ((global_settings.repeat_mode & 3) |
         ((global_settings.rec_channels & 1) << 2) |
         ((global_settings.rec_mic_gain & 0x0f) << 4));
    config_block[0x22] = (unsigned char)
        ((global_settings.rec_quality & 7) |
         ((global_settings.rec_source & 1) << 3) |
         ((global_settings.rec_frequency & 7) << 5));
    config_block[0x23] = (unsigned char)global_settings.rec_left_gain;
    config_block[0x24] = (unsigned char)global_settings.rec_right_gain;
    config_block[0x25] = (unsigned char)
        ((global_settings.disk_poweroff & 1) |
         ((global_settings.buffer_margin & 7) << 1) |
         ((global_settings.trickle_charge & 1) << 4));

    {
        static long lasttime = 0;

        global_settings.runtime += (current_tick - lasttime) / HZ;
        lasttime = current_tick;

        if ( global_settings.runtime > global_settings.topruntime )
            global_settings.topruntime = global_settings.runtime;

        config_block[0x26]=(unsigned char)(global_settings.runtime & 0xff);
        config_block[0x27]=(unsigned char)(global_settings.runtime >> 8);
        config_block[0x28]=(unsigned char)(global_settings.topruntime & 0xff);
        config_block[0x29]=(unsigned char)(global_settings.topruntime >> 8);
    }
    
#ifdef HAVE_LCD_CHARCELLS
    config_block[0xa8]=(unsigned char)global_settings.jump_scroll;
    config_block[0xa9]=(unsigned char)global_settings.jump_scroll_delay;
#endif
    config_block[0xaa] = (unsigned char)
        global_settings.max_files_in_playlist & 0xff;
    config_block[0xab] = (unsigned char)
        (global_settings.max_files_in_playlist >> 8) & 0xff;
    config_block[0xac] = (unsigned char)
        global_settings.max_files_in_dir & 0xff;
    config_block[0xad] = (unsigned char)
        (global_settings.max_files_in_dir >> 8) & 0xff;
    config_block[0xae] = (unsigned char)
        ((global_settings.fade_on_stop & 1) |
         ((global_settings.caption_backlight & 1) << 1));
    config_block[0xb0] = (unsigned char)global_settings.peak_meter_clip_hold |
        (global_settings.peak_meter_performance ? 0x80 : 0);
    config_block[0xb1] = global_settings.peak_meter_release |
        (global_settings.peak_meter_dbfs ? 0x80 : 0);
    config_block[0xb2] = (unsigned char)global_settings.peak_meter_min;
    config_block[0xb3] = (unsigned char)global_settings.peak_meter_max;

    config_block[0xb4]=(global_settings.battery_capacity - 1000) / 50;
    config_block[0xb5]=(unsigned char)global_settings.scroll_step;
    config_block[0xb6]=(unsigned char)global_settings.scroll_delay;
    config_block[0xb7]=(unsigned char)global_settings.bidir_limit;

    strncpy(&config_block[0xb8], global_settings.wps_file, MAX_FILENAME);
    strncpy(&config_block[0xcc], global_settings.lang_file, MAX_FILENAME);
    strncpy(&config_block[0xe0], global_settings.font_file, MAX_FILENAME);

    if(save_config_buffer())
    {
        lcd_clear_display();
#ifdef HAVE_LCD_CHARCELLS
        lcd_puts(0, 0, str(LANG_SETTINGS_SAVE_PLAYER));
        lcd_puts(0, 1, str(LANG_SETTINGS_BATTERY_PLAYER));
#else
        lcd_puts(4, 2, str(LANG_SETTINGS_SAVE_RECORDER));
        lcd_puts(2, 4, str(LANG_SETTINGS_BATTERY_RECORDER));
        lcd_update();
#endif
        sleep(HZ*2);
        return -1;
    }
    return 0;
}

#ifdef HAVE_LCD_BITMAP
/**
 * Applies the range infos stored in global_settings to 
 * the peak meter. 
 */
void settings_apply_pm_range(void)
{
    int pm_min, pm_max;

    /* depending on the scale mode (dBfs or percent) the values
       of global_settings.peak_meter_dbfs have different meanings */
    if (global_settings.peak_meter_dbfs) 
    {
        /* convert to dBfs * 100          */
        pm_min = -(((int)global_settings.peak_meter_min) * 100);
        pm_max = -(((int)global_settings.peak_meter_max) * 100);
    }
    else 
    {
        /* percent is stored directly -> no conversion */
        pm_min = global_settings.peak_meter_min;
        pm_max = global_settings.peak_meter_max;
    }

    /* apply the range */
    peak_meter_init_range(global_settings.peak_meter_dbfs, pm_min, pm_max);
}
#endif /* HAVE_LCD_BITMAP */

void settings_apply(void)
{
    char buf[64];

    mpeg_sound_set(SOUND_BASS, global_settings.bass);
    mpeg_sound_set(SOUND_TREBLE, global_settings.treble);
    mpeg_sound_set(SOUND_BALANCE, global_settings.balance);
    mpeg_sound_set(SOUND_VOLUME, global_settings.volume);
    mpeg_sound_set(SOUND_CHANNELS, global_settings.channel_config);
#ifdef HAVE_MAS3587F
    mpeg_sound_set(SOUND_LOUDNESS, global_settings.loudness);
    mpeg_sound_set(SOUND_SUPERBASS, global_settings.bass_boost);
    mpeg_sound_set(SOUND_AVC, global_settings.avc);
#endif

    lcd_set_contrast(global_settings.contrast);
    lcd_scroll_speed(global_settings.scroll_speed);
    backlight_set_timeout(global_settings.backlight_timeout);
    backlight_set_on_when_charging(global_settings.backlight_on_when_charging);
    ata_spindown(global_settings.disk_spindown);

#ifdef HAVE_ATA_POWER_OFF
    ata_poweroff(global_settings.disk_poweroff);
#endif

    set_poweroff_timeout(global_settings.poweroff);
#ifdef HAVE_CHARGE_CTRL
    charge_restart_level = global_settings.discharge ? 
        CHARGE_RESTART_LO : CHARGE_RESTART_HI;
    enable_trickle_charge(global_settings.trickle_charge);
#endif

    set_battery_capacity(global_settings.battery_capacity);

#ifdef HAVE_LCD_BITMAP
    lcd_set_invert_display(global_settings.invert);
    settings_apply_pm_range();
    peak_meter_init_times(
        global_settings.peak_meter_release, global_settings.peak_meter_hold, 
        global_settings.peak_meter_clip_hold);
#endif

    if ( global_settings.wps_file[0] && 
         global_settings.wps_file[0] != 0xff ) {
        snprintf(buf, sizeof buf, ROCKBOX_DIR "/%s.wps",
                 global_settings.wps_file);
        wps_load(buf, false);
    }
    else
        wps_reset();

#ifdef HAVE_LCD_BITMAP
    if ( global_settings.font_file[0] &&
         global_settings.font_file[0] != 0xff ) {
        snprintf(buf, sizeof buf, ROCKBOX_DIR "/%s.fnt",
                 global_settings.font_file);
        font_load(buf);
    }
    else
        font_reset();

    lcd_scroll_step(global_settings.scroll_step);
#else
    lcd_jump_scroll(global_settings.jump_scroll);
    lcd_jump_scroll_delay(global_settings.jump_scroll_delay * (HZ/10));
#endif
    lcd_bidir_scroll(global_settings.bidir_limit);
    lcd_scroll_delay(global_settings.scroll_delay * (HZ/10));

    if ( global_settings.lang_file[0] &&
         global_settings.lang_file[0] != 0xff ) {
        snprintf(buf, sizeof buf, ROCKBOX_DIR "/%s.lng",
                 global_settings.lang_file);
        lang_load(buf);
    }
}

static int default_contrast(void)
{
#ifdef SIMULATOR
    return 30;
#else
#ifdef HAVE_LCD_CHARCELLS
    return 30;
#else
    return (read_hw_mask() & LCD_CONTRAST_BIAS) ? 31 : 49;
#endif
#endif
}

/*
 * load settings from disk or RTC RAM
 */
void settings_load(void)
{
    
    DEBUGF( "reload_all_settings()\n" );

    /* populate settings with default values */
    settings_reset();
    
    /* load the buffer from the RTC (resets it to all-unused if the block
       is invalid) and decode the settings which are set in the block */
    if (!load_config_buffer()) {
        if (config_block[0x4] != 0xFF)
            global_settings.volume = config_block[0x4];
        if (config_block[0x5] != 0xFF)
            global_settings.balance = (char)config_block[0x5];
        if (config_block[0x6] != 0xFF)
            global_settings.bass = config_block[0x6];
        if (config_block[0x7] != 0xFF)
            global_settings.treble = config_block[0x7];
        if (config_block[0x8] != 0xFF)
            global_settings.loudness = config_block[0x8];
        if (config_block[0x9] != 0xFF)
            global_settings.bass_boost = config_block[0x9];
    
        if (config_block[0xa] != 0xFF) {
            global_settings.contrast = config_block[0xa] & 0x3f;
            global_settings.invert =
                config_block[0xa] & 0x40 ? true : false;
            if ( global_settings.contrast < MIN_CONTRAST_SETTING )
                global_settings.contrast = default_contrast();
            global_settings.show_icons =
                config_block[0xa] & 0x80 ? true : false;
        }

        if (config_block[0xb] != 0xFF) {
            /* Bit 7 is unused to be able to detect uninitialized entry */
            global_settings.backlight_timeout = config_block[0xb] & 0x1f;
            global_settings.invert_cursor =
                config_block[0xb] & 0x20 ? true : false;
            global_settings.backlight_on_when_charging =
                config_block[0xb] & 0x40 ? true : false;
        }

        if (config_block[0xc] != 0xFF)
            global_settings.poweroff = config_block[0xc];
        if (config_block[0xd] != 0xFF)
            global_settings.resume = config_block[0xd];
        if (config_block[0xe] != 0xFF) {
            global_settings.playlist_shuffle = config_block[0xe] & 1;
            global_settings.dirfilter = (config_block[0xe] >> 1) & 1;
            global_settings.sort_case = (config_block[0xe] >> 2) & 1;
            global_settings.discharge = (config_block[0xe] >> 3) & 1;
            global_settings.statusbar = (config_block[0xe] >> 4) & 1;
            global_settings.dirfilter |= ((config_block[0xe] >> 5) & 1) << 1;
            global_settings.scrollbar = (config_block[0xe] >> 6) & 1;
            /* Don't use the last bit, it must be unused to detect
               an uninitialized entry */
        }
        
        if (config_block[0xf] != 0xFF) {
            global_settings.volume_type = config_block[0xf] & 1;
            global_settings.battery_type = (config_block[0xf] >> 1) & 1;
            global_settings.timeformat  = (config_block[0xf] >> 2) & 1;
            global_settings.scroll_speed = config_block[0xf] >> 3;
        }

        if (config_block[0x10] != 0xFF) {
            global_settings.ff_rewind_min_step = (config_block[0x10] >> 4) & 15;
            global_settings.ff_rewind_accel = config_block[0x10] & 15;
        }

        if (config_block[0x11] != 0xFF)
        {
            global_settings.avc = config_block[0x11] & 0x03;
            global_settings.channel_config = (config_block[0x11] >> 2) & 0x07;
        }

        if (config_block[0x12] != 0xFF)
            memcpy(&global_settings.resume_index, &config_block[0x12], 4);

        if (config_block[0x16] != 0xFF)
            memcpy(&global_settings.resume_offset, &config_block[0x16], 4);

        if (config_block[0x1a] != 0xFF)
            global_settings.disk_spindown = config_block[0x1a];

        if (config_block[0x1b] != 0xFF) {
            global_settings.browse_current = (config_block[0x1b]) & 1;
            global_settings.play_selected = (config_block[0x1b] >> 1) & 1;
            global_settings.recursive_dir_insert =
                (config_block[0x1b] >> 2) & 1;
        }

        if (config_block[0x1c] != 0xFF) {
            global_settings.peak_meter_hold = (config_block[0x1c]) & 0x1f;
            global_settings.rec_editable =
                (config_block[0x1c] & 0x80)?true:false;
        }

        if (config_block[0x21] != 0xFF)
        {
            global_settings.repeat_mode = config_block[0x21] & 3;
            global_settings.rec_channels = (config_block[0x21] >> 2) & 1;
            global_settings.rec_mic_gain = (config_block[0x21] >> 4) & 0x0f;
        }

        if (config_block[0x22] != 0xFF)
        {
            global_settings.rec_quality = config_block[0x22] & 7;
            global_settings.rec_source = (config_block[0x22] >> 3) & 3;
            global_settings.rec_frequency = (config_block[0x22] >> 5) & 7;
        }

        if (config_block[0x23] != 0xFF)
            global_settings.rec_left_gain = config_block[0x23] & 0x0f;

        if (config_block[0x24] != 0xFF)
            global_settings.rec_right_gain = config_block[0x24] & 0x0f;

        if (config_block[0x25] != 0xFF)
        {
            global_settings.disk_poweroff = config_block[0x25] & 1;
            global_settings.buffer_margin = (config_block[0x25] >> 1) & 7;
            global_settings.trickle_charge = (config_block[0x25] >> 4) & 1;
        }

        if (config_block[0x27] != 0xff)
            global_settings.runtime = 
                config_block[0x26] | (config_block[0x27] << 8);

        if (config_block[0x29] != 0xff)
            global_settings.topruntime =
                config_block[0x28] | (config_block[0x29] << 8);

        if (config_block[0xae] != 0xff) {
            global_settings.fade_on_stop = config_block[0xae] & 1;
            global_settings.caption_backlight = (config_block[0xae] >> 1) & 1;
        }

        if(config_block[0xb0] != 0xff) {
            global_settings.peak_meter_clip_hold = (config_block[0xb0]) & 0x1f;
            global_settings.peak_meter_performance = 
                (config_block[0xb0] & 0x80) != 0;
        }

        if(config_block[0xb1] != 0xff) {
            global_settings.peak_meter_release = config_block[0xb1] & 0x7f;
            global_settings.peak_meter_dbfs = (config_block[0xb1] & 0x80) != 0;
        }

        if(config_block[0xb2] != 0xff)
            global_settings.peak_meter_min = config_block[0xb2];
        
        if(config_block[0xb3] != 0xff)
            global_settings.peak_meter_max = config_block[0xb3];

        if(config_block[0xb4] != 0xff)
            global_settings.battery_capacity = config_block[0xb4]*50 + 1000;

        if (config_block[0xb5] != 0xff)
            global_settings.scroll_step = config_block[0xb5];

        if (config_block[0xb6] != 0xff)
            global_settings.scroll_delay = config_block[0xb6];

        if (config_block[0xb7] != 0xff)
            global_settings.bidir_limit = config_block[0xb7];

       if (config_block[0xac] != 0xff)
            global_settings.max_files_in_dir =
                config_block[0xac] | (config_block[0xad] << 8);

        if (config_block[0xaa] != 0xff)
            global_settings.max_files_in_playlist =
                config_block[0xaa] | (config_block[0xab] << 8);

        strncpy(global_settings.wps_file, &config_block[0xb8], MAX_FILENAME);
        strncpy(global_settings.lang_file, &config_block[0xcc], MAX_FILENAME);
        strncpy(global_settings.font_file, &config_block[0xe0], MAX_FILENAME);
#ifdef HAVE_LCD_CHARCELLS
        if (config_block[0xa8] != 0xff)
            global_settings.jump_scroll = config_block[0xa8];
        if (config_block[0xa9] != 0xff)
            global_settings.jump_scroll_delay = config_block[0xa9];
#endif
    }

    settings_apply();
}

/* parse a line from a configuration file. the line format is: 

   setting name: setting value

   Any whitespace before setting name or value (after ':') is ignored.
   A # as first non-whitespace character discards the whole line.
   Function sets pointers to null-terminated setting name and value.
   Returns false if no valid config entry was found.
*/

static bool settings_parseline(char* line, char** name, char** value)
{
    char* ptr;

    while ( isspace(*line) )
        line++;

    if ( *line == '#' )
        return false;

    ptr = strchr(line, ':');
    if ( !ptr )
        return false;

    *name = line;
    *ptr = 0;
    ptr++;
    while (isspace(*ptr))
        ptr++;
    *value = ptr;
    return true;
}

void set_file(char* filename, char* setting, int maxlen)
{
    char* fptr = strrchr(filename,'/');
    int len;
    int extlen = 0;
    char* ptr;

    if (!fptr)
        return;

    *fptr = 0;
    fptr++;

    len = strlen(fptr);
    ptr = fptr + len;
    while (*ptr != '.') {
        extlen++;
        ptr--;
    }
        
    if (strcmp(ROCKBOX_DIR, filename) || (len-extlen > maxlen))
        return;
        
    strncpy(setting, fptr, len-extlen);
    setting[len-extlen]=0;

    settings_save();
}

static void set_sound(char* value, int type, int* setting)
{
    int num = atoi(value);

    num = mpeg_phys2val(type, num);

    if ((num > mpeg_sound_max(type)) ||
        (num < mpeg_sound_min(type)))
    {
        num = mpeg_sound_default(type);
    }

    *setting = num;
    mpeg_sound_set(type, num);

#ifdef HAVE_MAS3507D
    /* This is required to actually apply balance */
    if (SOUND_BALANCE == type)
        mpeg_sound_set(SOUND_VOLUME, global_settings.volume);
#endif
}

static void set_cfg_bool(bool* variable, char* value)
{
    /* look for the 'n' in 'on' */
    if ((value[1] & 0xdf) == 'N') 
        *variable = true;
    else
        *variable = false;
}

static void set_cfg_int(int* variable, char* value, int min, int max )
{
    *variable = atoi(value);

    if (*variable < min)
        *variable = min;
    else
        if (*variable > max)
            *variable = max;
}

static void set_cfg_option(int* variable, char* value,
                           char* options[], int numoptions )
{
    int i;

    for (i=0; i<numoptions; i++) {
        if (!strcasecmp(options[i], value)) {
            *variable = i;
            break;
        }
    }
}

bool settings_load_config(char* file)
{
    int fd;
    char line[128];

    fd = open(file, O_RDONLY);
    if (fd < 0)
        return false;

    while (read_line(fd, line, sizeof line) > 0)
    {
        char* name;
        char* value;

        if (!settings_parseline(line, &name, &value))
            continue;

        if (!strcasecmp(name, "volume"))
            set_sound(value, SOUND_VOLUME, &global_settings.volume);
        else if (!strcasecmp(name, "bass"))
            set_sound(value, SOUND_BASS, &global_settings.bass);
        else if (!strcasecmp(name, "treble"))
            set_sound(value, SOUND_TREBLE, &global_settings.treble);
        else if (!strcasecmp(name, "balance"))
            set_sound(value, SOUND_BALANCE, &global_settings.balance);
        else if (!strcasecmp(name, "channels")) {
            static char* options[] = {
                "stereo","stereo narrow","mono","mono left",
                "mono right","karaoke","stereo wide"};
            set_cfg_option(&global_settings.channel_config, value,
                           options, 7);
        }
        else if (!strcasecmp(name, "wps")) {
            if (wps_load(value,false))
                set_file(value, global_settings.wps_file, MAX_FILENAME);
        }
        else if (!strcasecmp(name, "lang")) {
            if (!lang_load(value))
                set_file(value, global_settings.lang_file, MAX_FILENAME);
        }
        else if (!strcasecmp(name, "bidir limit"))
            set_cfg_int(&global_settings.bidir_limit, value, 0, 200);
#ifdef HAVE_LCD_BITMAP
        else if (!strcasecmp(name, "font")) {
            if (font_load(value))
                set_file(value, global_settings.font_file, MAX_FILENAME);
        }
        else if (!strcasecmp(name, "scroll step"))
            set_cfg_int(&global_settings.scroll_step, value, 1, LCD_WIDTH);
        else if (!strcasecmp(name, "statusbar"))
            set_cfg_bool(&global_settings.statusbar, value);
        else if (!strcasecmp(name, "peak meter release"))
            set_cfg_int(&global_settings.peak_meter_release, value, 1, 0x7e);
        else if (!strcasecmp(name, "peak meter hold")) {
            static char* options[] = {
                "off","200ms","300ms","500ms",
                "1","2","3","4","5","6","7","8","9","10",
                "15","20","30","1min"};
            set_cfg_option(&global_settings.peak_meter_hold, value,
                           options, 18);
        }
        else if (!strcasecmp(name, "peak meter clip hold")) {
            static char* options[] = {
                "on","1","2","3","4","5","6","7","8","9","10",
                "15","20","25","30","45","60","90",
                "2min","3min","5min","10min","20min","45min","90min"};
            set_cfg_option(&global_settings.peak_meter_clip_hold, value,
                           options, 25);
        }
        else if (!strcasecmp(name, "peak meter dbfs"))
            set_cfg_bool(&global_settings.peak_meter_dbfs, value);
        else if (!strcasecmp(name, "peak meter min"))
            set_cfg_int(&global_settings.peak_meter_min, value, 0, 100);
        else if (!strcasecmp(name, "peak meter max"))
            set_cfg_int(&global_settings.peak_meter_max, value, 0, 100);
        else if (!strcasecmp(name, "peak meter busy"))
            set_cfg_bool(&global_settings.peak_meter_performance, value);
        else if (!strcasecmp(name, "volume display")) {
            static char* options[] = {"graphic", "numeric"};
            set_cfg_option(&global_settings.volume_type, value, options, 2);
        }
        else if (!strcasecmp(name, "battery display")) {
            static char* options[] = {"graphic", "numeric"};
            set_cfg_option(&global_settings.battery_type, value, options, 2);
        }
        else if (!strcasecmp(name, "time format")) {
            static char* options[] = {"24hour", "12hour"};
            set_cfg_option(&global_settings.timeformat, value, options, 2);
        }
        else if (!strcasecmp(name, "scrollbar"))
            set_cfg_bool(&global_settings.scrollbar, value);
        else if (!strcasecmp(name, "invert"))
            set_cfg_bool(&global_settings.invert, value);
        else if (!strcasecmp(name, "invert cursor"))
            set_cfg_bool(&global_settings.invert_cursor, value);
        else if (!strcasecmp(name, "show icons"))
            set_cfg_bool(&global_settings.show_icons, value);
#endif
        else if (!strcasecmp(name, "caption backlight"))
            set_cfg_bool(&global_settings.caption_backlight, value);
        else if (!strcasecmp(name, "shuffle"))
            set_cfg_bool(&global_settings.playlist_shuffle, value);
        else if (!strcasecmp(name, "repeat")) {
            static char* options[] = {"off", "all", "one"};
            set_cfg_option(&global_settings.repeat_mode, value, options, 3);
        }
        else if (!strcasecmp(name, "resume")) {
            static char* options[] = {"off", "ask", "ask once", "on"};
            set_cfg_option(&global_settings.resume, value, options, 4);
        }
        else if (!strcasecmp(name, "sort case"))
            set_cfg_bool(&global_settings.sort_case, value);
        else if (!strcasecmp(name, "show files")) {
            static char* options[] = {"all", "supported","music", "playlists"};
            set_cfg_option(&global_settings.dirfilter, value, options, 4);
        }
        else if (!strcasecmp(name, "follow playlist"))
            set_cfg_bool(&global_settings.browse_current, value);
        else if (!strcasecmp(name, "play selected"))
            set_cfg_bool(&global_settings.play_selected, value);
        else if (!strcasecmp(name, "contrast"))
            set_cfg_int(&global_settings.contrast, value,
                        MIN_CONTRAST_SETTING, MAX_CONTRAST_SETTING);
        else if (!strcasecmp(name, "scroll speed"))
            set_cfg_int(&global_settings.scroll_speed, value, 1, 10);
        else if (!strcasecmp(name, "scan min step")) {
            static char* options[] =
                {"1","2","3","4","5","6","8","10",
                 "15","20","25","30","45","60"};
            set_cfg_option(&global_settings.ff_rewind_min_step, value,
                           options, 14);
        }
        else if (!strcasecmp(name, "scan accel"))
            set_cfg_int(&global_settings.ff_rewind_accel, value, 0, 15);
        else if (!strcasecmp(name, "scroll delay"))
            set_cfg_int(&global_settings.scroll_delay, value, 0, 250);
        else if (!strcasecmp(name, "backlight timeout")) {
            static char* options[] = {
                "off","on","1","2","3","4","5","6","7","8","9",
                "10","15","20","25","30","45","60","90"};
            set_cfg_option(&global_settings.backlight_timeout, value,
                           options, 19);
        }
        else if (!strcasecmp(name, "backlight when plugged"))
            set_cfg_bool(&global_settings.backlight_on_when_charging, value);
        else if (!strcasecmp(name, "antiskip"))
            set_cfg_int(&global_settings.buffer_margin, value, 0, 7);
        else if (!strcasecmp(name, "disk spindown"))
            set_cfg_int(&global_settings.disk_spindown, value, 3, 254);
#ifdef HAVE_ATA_POWER_OFF
        else if (!strcasecmp(name, "disk poweroff"))
            set_cfg_bool(&global_settings.disk_poweroff, value);
#endif
#ifdef HAVE_MAS3587F
        else if (!strcasecmp(name, "loudness"))
            set_sound(value, SOUND_LOUDNESS, &global_settings.loudness);
        else if (!strcasecmp(name, "bass boost"))
            set_sound(value, SOUND_SUPERBASS, &global_settings.bass_boost);
        else if (!strcasecmp(name, "auto volume")) {
            static char* options[] = {"off", "2", "4", "8" };
            set_cfg_option(&global_settings.avc, value, options, 4);
        }
        else if (!strcasecmp(name, "rec mic gain"))
            set_sound(value, SOUND_MIC_GAIN, &global_settings.rec_mic_gain);
        else if (!strcasecmp(name, "rec left gain"))
            set_sound(value, SOUND_LEFT_GAIN, &global_settings.rec_left_gain);
        else if (!strcasecmp(name, "rec right gain"))
            set_sound(value, SOUND_RIGHT_GAIN, &global_settings.rec_right_gain);
        else if (!strcasecmp(name, "rec quality"))
            set_cfg_int(&global_settings.rec_quality, value, 0, 7);
        else if (!strcasecmp(name, "rec timesplit")){
            static char* options[] = {"off", "00:05","00:10","00:15",
                                      "00:30","01:00","02:00","04:00",
                                      "06:00","08:00","10:00","12:00",
                                      "18:00","24:00"};
            set_cfg_option(&global_settings.rec_timesplit, value, 
                           options, 14);
        }
        else if (!strcasecmp(name, "rec source")) {
            static char* options[] = {"mic", "line", "spdif"};
            set_cfg_option(&global_settings.rec_source, value, options, 3); 
        }
        else if (!strcasecmp(name, "rec frequency")) {
            static char* options[] = {"44", "48", "32", "22", "24", "16"};
            set_cfg_option(&global_settings.rec_frequency, value, options, 6);
        }
        else if (!strcasecmp(name, "rec channels")) {
            static char* options[] = {"stereo", "mono"};
            set_cfg_option(&global_settings.rec_channels, value, options, 2);
        }
        else if (!strcasecmp(name, "editable recordings")) {
            set_cfg_bool(&global_settings.rec_editable, value);
        }
#endif
        else if (!strcasecmp(name, "idle poweroff")) {
            static char* options[] = {"off","1","2","3","4","5","6","7","8",
                                      "9","10","15","30","45","60"};
            set_cfg_option(&global_settings.poweroff, value, options, 15);
        }
        else if (!strcasecmp(name, "battery capacity"))
            set_cfg_int(&global_settings.battery_capacity, value,
                        1500, BATTERY_CAPACITY_MAX);
#ifdef HAVE_CHARGE_CTRL
        else if (!strcasecmp(name, "deep discharge"))
            set_cfg_bool(&global_settings.discharge, value);
        else if (!strcasecmp(name, "trickle charge"))
            set_cfg_bool(&global_settings.trickle_charge, value);
#endif
        else if (!strcasecmp(name, "volume fade"))
            set_cfg_bool(&global_settings.fade_on_stop, value);
        else if (!strcasecmp(name, "max files in dir"))
            set_cfg_int(&global_settings.max_files_in_dir, value,
                        50, 10000);
        else if (!strcasecmp(name, "max files in playlist"))
            set_cfg_int(&global_settings.max_files_in_playlist, value,
                        1000, 20000);
        else if (!strcasecmp(name, "recursive directory insert"))
            set_cfg_bool(&global_settings.recursive_dir_insert, value);
    }

    close(fd);
    settings_apply();
    settings_save();
    return true;
}


bool settings_save_config(void)
{
    bool done = false;
    int fd, i, value;
    char filename[MAX_PATH];
    char* boolopt[] = {"off","on"};

    /* find unused filename */
    for (i=0; ; i++) {
        snprintf(filename, sizeof filename, "/.rockbox/config%02d.cfg", i);
        fd = open(filename, O_RDONLY);
        if (fd < 0)
            break;
        close(fd);
    }

    /* allow user to modify filename */
    while (!done) {
        if (!kbd_input(filename, sizeof filename)) {
            fd = creat(filename,0);
            if (fd < 0) {
                lcd_clear_display();
                lcd_puts(0,0,str(LANG_FAILED));
                lcd_update();
                sleep(HZ);
            }
            else
                done = true;
        }
        else
            break;
    }

    /* abort if file couldn't be created */
    if (!done) {
        lcd_clear_display();
        lcd_puts(0,0,str(LANG_RESET_DONE_CANCEL));
        lcd_update();
        sleep(HZ);
        return false;
    }

    fprintf(fd, "# >>> .cfg file created by rockbox %s <<<\r\n", appsversion);
    fprintf(fd, "# >>>    http://rockbox.haxx.se    <<<\r\n#\r\n");
    fprintf(fd, "#\r\n# wps / language / font \r\n#\r\n");

    if (global_settings.wps_file[0] != 0)
        fprintf(fd, "wps: /.rockbox/%s.wps\r\n", global_settings.wps_file);

    if (global_settings.lang_file[0] != 0)
        fprintf(fd, "lang: /.rockbox/%s.lng\r\n", global_settings.lang_file);

#ifdef HAVE_LCD_BITMAP
    if (global_settings.font_file[0] != 0)
        fprintf(fd, "font: /.rockbox/%s.fnt\r\n", global_settings.font_file);
#endif

    fprintf(fd, "#\r\n# Sound settings\r\n#\r\n");

    value = mpeg_val2phys(SOUND_VOLUME, global_settings.volume);
    fprintf(fd, "volume: %d\r\n", value);

    value = mpeg_val2phys(SOUND_BASS, global_settings.bass);
    fprintf(fd, "bass: %d\r\n", value);

    value = mpeg_val2phys(SOUND_TREBLE, global_settings.treble);
    fprintf(fd, "treble: %d\r\n", value);

    value = mpeg_val2phys(SOUND_BALANCE, global_settings.balance);
    fprintf(fd, "balance: %d\r\n", value);

    {
        static char* options[] =
        {"stereo","stereo narrow","mono","mono left",
         "mono right","karaoke","stereo wide"};
        fprintf(fd, "channels: %s\r\n",
                options[global_settings.channel_config]);
    }

#ifdef HAVE_MAS3587F
    value = mpeg_val2phys(SOUND_LOUDNESS, global_settings.loudness);
    fprintf(fd, "loudness: %d\r\n", value);

    value = mpeg_val2phys(SOUND_SUPERBASS, global_settings.bass_boost);
    fprintf(fd, "bass boost: %d\r\n", value);

    {
        static char* options[] = {"off", "2", "4", "8" };
        fprintf(fd, "auto volume: %s\r\n", options[global_settings.avc]);
    }
#endif

    fprintf(fd, "#\r\n# Playback\r\n#\r\n");
    fprintf(fd, "shuffle: %s\r\n", boolopt[global_settings.playlist_shuffle]);

    {
        static char* options[] = {"off", "all", "one"};
        fprintf(fd, "repeat: %s\r\n", options[global_settings.repeat_mode]);
    }

    fprintf(fd, "play selected: %s\r\n",
            boolopt[global_settings.play_selected]);

    {
        static char* options[] = {"off", "ask", "ask once", "on"};
        fprintf(fd, "resume: %s\r\n", options[global_settings.resume]);
    }

    {
        static char* options[] =
        {"1","2","3","4","5","6","8","10",
         "15","20","25","30","45","60"};
        fprintf(fd, "scan min step: %s\r\n",
                options[global_settings.ff_rewind_min_step]);
    }

    fprintf(fd, "scan accel: %d\r\nantiskip: %d\r\n",
            global_settings.ff_rewind_accel,
            global_settings.buffer_margin);
    fprintf(fd, "volume fade: %s\r\n", boolopt[global_settings.fade_on_stop]);
    fprintf(fd, "#\r\n# File View\r\n#\r\n");
    fprintf(fd, "sort case: %s\r\n", boolopt[global_settings.sort_case]);

    {
        static char* options[] = {"all", "supported","music", "playlists"};
        fprintf(fd, "show files: %s\r\n", options[global_settings.dirfilter]);
    }

    fprintf(fd, "follow playlist: %s\r\n",
            boolopt[global_settings.browse_current]);

    fprintf(fd, "#\r\n# Display\r\n#\r\n");
    
#ifdef HAVE_LCD_BITMAP
    fprintf(fd, "statusbar: %s\r\nscrollbar: %s\r\n",
            boolopt[global_settings.statusbar],
            boolopt[global_settings.scrollbar]);

    {
        static char* options[] = {"graphic", "numeric"};
        fprintf(fd, "volume display: %s\r\nbattery display: %s\r\n",
                options[global_settings.volume_type],
                options[global_settings.battery_type]);
    }
#endif

    fprintf(fd, "scroll speed: %d\r\nscroll delay: %d\r\n",
             global_settings.scroll_speed,
             global_settings.scroll_delay);

#ifdef HAVE_LCD_BITMAP
    fprintf(fd, "scroll step: %d\r\n", global_settings.scroll_step);
#else
    fprintf(fd, "jump scroll: %d\r\n", global_settings.jump_scroll);
    fprintf(fd, "jump scroll delay: %d\r\n", global_settings.jump_scroll_delay);
#endif

    fprintf(fd, "bidir limit: %d\r\n", global_settings.bidir_limit);

    {
        static char* options[] =
        {"off","on","1","2","3","4","5","6","7","8","9",
         "10","15","20","25","30","45","60","90"};
        fprintf(fd, "backlight timeout: %s\r\n",
                 options[global_settings.backlight_timeout]);
    }

    fprintf(fd, "backlight when plugged: %s\r\n",
            boolopt[global_settings.backlight_on_when_charging]);

    fprintf(fd, "caption backlight: %s\r\n",
            boolopt[global_settings.caption_backlight]);
    fprintf(fd, "contrast: %d\r\n", global_settings.contrast);

#ifdef HAVE_LCD_BITMAP
    fprintf(fd, "invert: %s\r\n", boolopt[global_settings.invert]);
    
    fprintf(fd, "invert cursor: %s\r\n",
            boolopt[global_settings.invert_cursor]);

    fprintf(fd, "show icons: %s\r\n",
            boolopt[global_settings.show_icons]);

    fprintf(fd, "peak meter release: %d\r\n",
            global_settings.peak_meter_release);

    {
        static char* options[] =
        {"off","200ms","300ms","500ms","1","2","3","4","5",
         "6","7","8","9","10","15","20","30","1min"};
        fprintf(fd, "peak meter hold: %s\r\n",
                options[global_settings.peak_meter_hold]);
    }

    {
        static char* options[] =
        {"on","1","2","3","4","5","6","7","8","9","10","15","20","25","30",
         "45","60","90","2min","3min","5min","10min","20min","45min","90min"};
        fprintf(fd, "peak meter clip hold: %s\r\n",
                options[global_settings.peak_meter_clip_hold]);
    }

    fprintf(fd, "peak meter busy: %s\r\npeak meter dbfs: %s\r\n",
            boolopt[global_settings.peak_meter_performance],
            boolopt[global_settings.peak_meter_dbfs]);

    fprintf(fd, "peak meter min: %d\r\npeak meter max: %d\r\n",
            global_settings.peak_meter_min,
            global_settings.peak_meter_max);
#endif

    fprintf(fd, "#\r\n# System\r\n#\r\ndisk spindown: %d\r\n",
             global_settings.disk_spindown);

#ifdef HAVE_ATA_POWER_OFF
    fprintf(fd, "disk poweroff: %s\r\n",
            boolopt[global_settings.disk_poweroff]);
#endif

    fprintf(fd, "battery capacity: %d\r\n", global_settings.battery_capacity);

#ifdef HAVE_CHARGE_CTRL
    fprintf(fd, "deep discharge: %s\r\ntrickle charge: %s\r\n",
            boolopt[global_settings.discharge],
            boolopt[global_settings.trickle_charge]);
#endif

#ifdef HAVE_LCD_BITMAP
    {
        static char* options[] = {"24hour", "12hour"};
        fprintf(fd, "time format: %s\r\n",
                options[global_settings.timeformat]);
    }
#endif

    {
        static char* options[] =
        {"off","1","2","3","4","5","6","7","8",
         "9","10","15","30","45","60"};
        fprintf(fd, "idle poweroff: %s\r\n",
                options[global_settings.poweroff]);
    }

#ifdef HAVE_MAS3587F
    fprintf(fd, "#\r\n# Recording\r\n#\r\n");
    fprintf(fd, "rec quality: %d\r\n", global_settings.rec_quality);
    
    {
        static char* options[] = {"44", "48", "32", "22", "24", "16"};
        fprintf(fd, "rec frequency: %s\r\n",
                options[global_settings.rec_frequency]);
    }

    {
        static char* options[] = {"mic", "line", "spdif"};
        fprintf(fd, "rec source: %s\r\n", options[global_settings.rec_source]);
    }

    {
        static char* options[] = {"stereo", "mono"};
        fprintf(fd, "rec channels: %s\r\n",
                options[global_settings.rec_channels]);
    }

    fprintf(fd,
            "rec mic gain: %d\r\nrec left gain: %d\r\nrec right gain: %d\r\n",
            global_settings.rec_mic_gain,
            global_settings.rec_left_gain,
            global_settings.rec_right_gain);

    fprintf(fd, "editable recordings: %s\r\n",
            boolopt[global_settings.rec_editable]);

#endif

    fprintf(fd, "max files in dir: %d\r\n", global_settings.max_files_in_dir);
    fprintf(fd, "max files in playlist: %d\r\n",
            global_settings.max_files_in_playlist);
    
    fprintf(fd, "recursive directory insert: %s\r\n",
            boolopt[global_settings.recursive_dir_insert]);

    close(fd);

    lcd_clear_display();
    lcd_puts(0,0,str(LANG_SETTINGS_SAVED1));
    lcd_puts(0,1,str(LANG_SETTINGS_SAVED2));
    lcd_update();
    sleep(HZ);
    return true;
}

/*
 * reset all settings to their default value 
 */
void settings_reset(void) {
        
    DEBUGF( "settings_reset()\n" );

    global_settings.volume      = mpeg_sound_default(SOUND_VOLUME);
    global_settings.balance     = mpeg_sound_default(SOUND_BALANCE);
    global_settings.bass        = mpeg_sound_default(SOUND_BASS);
    global_settings.treble      = mpeg_sound_default(SOUND_TREBLE);
    global_settings.loudness    = mpeg_sound_default(SOUND_LOUDNESS);
    global_settings.bass_boost  = mpeg_sound_default(SOUND_SUPERBASS);
    global_settings.avc         = mpeg_sound_default(SOUND_AVC);
    global_settings.channel_config = mpeg_sound_default(SOUND_CHANNELS);
    global_settings.rec_quality = 5;
    global_settings.rec_source = 0;    /* 0=mic */
    global_settings.rec_frequency = 0; /* 0=44.1kHz */
    global_settings.rec_channels = 0;  /* 0=Stereo */
    global_settings.rec_mic_gain = 8;
    global_settings.rec_left_gain = 2; /* 0dB */
    global_settings.rec_right_gain = 2; /* 0dB */
    global_settings.rec_editable = false;
    global_settings.resume      = RESUME_ASK;
    global_settings.contrast    = default_contrast();
    global_settings.invert      = DEFAULT_INVERT_SETTING;
    global_settings.poweroff    = DEFAULT_POWEROFF_SETTING;
    global_settings.backlight_timeout   = DEFAULT_BACKLIGHT_TIMEOUT_SETTING;
    global_settings.invert_cursor = DEFAULT_INVERT_CURSOR_SETTING;
    global_settings.backlight_on_when_charging   = 
        DEFAULT_BACKLIGHT_ON_WHEN_CHARGING_SETTING;
    global_settings.battery_capacity = 1500; /* mAh */
    global_settings.trickle_charge = true;
    global_settings.dirfilter   = SHOW_MUSIC;
    global_settings.sort_case   = false;
    global_settings.statusbar   = true;
    global_settings.scrollbar   = true;
    global_settings.repeat_mode = REPEAT_ALL;
    global_settings.playlist_shuffle = false;
    global_settings.discharge    = 0;
    global_settings.timeformat   = 0;
    global_settings.volume_type  = 0;
    global_settings.battery_type = 0;
    global_settings.scroll_speed = 8;
    global_settings.bidir_limit  = 50;
#ifdef HAVE_LCD_CHARCELLS
    global_settings.jump_scroll  = 0;
    global_settings.jump_scroll_delay  = 50;
#endif    
    global_settings.scroll_delay = 100;
    global_settings.scroll_step  = 6;
    global_settings.ff_rewind_min_step = DEFAULT_FF_REWIND_MIN_STEP;
    global_settings.ff_rewind_accel = DEFAULT_FF_REWIND_ACCEL_SETTING;
    global_settings.resume_index = -1;
    global_settings.resume_offset = -1;
    global_settings.disk_spindown = 5;
    global_settings.disk_poweroff = false;
    global_settings.buffer_margin = 0;
    global_settings.browse_current = false;
    global_settings.play_selected = true;
    global_settings.peak_meter_release = 8;
    global_settings.peak_meter_hold = 3;
    global_settings.peak_meter_clip_hold = 16;
    global_settings.peak_meter_dbfs = true;
    global_settings.peak_meter_min = 60;
    global_settings.peak_meter_max = 0;
    global_settings.peak_meter_performance = false;
    global_settings.wps_file[0] = 0;
    global_settings.font_file[0] = 0;
    global_settings.lang_file[0] = 0;
    global_settings.runtime = 0;
    global_settings.topruntime = 0;
    global_settings.fade_on_stop = true;
    global_settings.caption_backlight = false;
    global_settings.max_files_in_dir = 400;
    global_settings.max_files_in_playlist = 10000;
    global_settings.show_icons = true;
    global_settings.recursive_dir_insert = false;
}

bool set_bool(char* string, bool* variable )
{
    return set_bool_options(string, variable, str(LANG_SET_BOOL_YES), 
                            str(LANG_SET_BOOL_NO), NULL);
}

/* wrapper to convert from int param to bool param in set_option */
static void (*boolfunction)(bool);
void bool_funcwrapper(int value)
{
    if (value)
        boolfunction(true);
    else
        boolfunction(false);
}

bool set_bool_options(char* string, bool* variable,
                      char* yes_str, char* no_str, void (*function)(bool))
{
    char* names[] = { no_str, yes_str };
    bool result;

    boolfunction = function;
    result = set_option(string, variable, BOOL, names, 2, 
                        function ? bool_funcwrapper : NULL);
    return result;
}

bool set_int(char* string, 
             char* unit,
             int* variable,
             void (*function)(int),
             int step,
             int min,
             int max )
{
    bool done = false;
    int button;
    int org_value=*variable;

#ifdef HAVE_LCD_BITMAP
    if(global_settings.statusbar)
        lcd_setmargins(0, STATUSBAR_HEIGHT);
    else
        lcd_setmargins(0, 0);
#endif

    lcd_clear_display();
    lcd_puts_scroll(0, 0, string);

    while (!done) {
        char str[32];
        snprintf(str,sizeof str,"%d %s  ", *variable, unit);
        lcd_puts(0, 1, str);
#ifdef HAVE_LCD_BITMAP
        status_draw(true);
#endif
        lcd_update();

        button = button_get_w_tmo(HZ/2);
        switch(button) {
#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_UP:
            case BUTTON_UP | BUTTON_REPEAT:
#else
            case BUTTON_RIGHT:
            case BUTTON_RIGHT | BUTTON_REPEAT:
#endif
                *variable += step;
                break;

#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_DOWN:
            case BUTTON_DOWN | BUTTON_REPEAT:
#else
            case BUTTON_LEFT:
            case BUTTON_LEFT | BUTTON_REPEAT:
#endif
                *variable -= step;
                break;

#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_LEFT:
            case BUTTON_PLAY:
#else
            case BUTTON_PLAY:
#endif
                done = true;
                break;

#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_OFF:
#else
            case BUTTON_STOP:
            case BUTTON_MENU:
#endif
                if (*variable != org_value) {
                    *variable=org_value;
                    lcd_stop_scroll();
                    lcd_puts(0, 0, str(LANG_MENU_SETTING_CANCEL));
                    lcd_update();
                    sleep(HZ/2);
                }
                done = true;
                break;

            case SYS_USB_CONNECTED:
                usb_screen();
                return true;

        }
        if(*variable > max )
            *variable = max;

        if(*variable < min )
            *variable = min;

        if ( function && button != BUTTON_NONE)
            function(*variable);
    }
    lcd_stop_scroll();

    return false;
}

/* NOTE: the 'type' parameter specifies the actual type of the variable
   that 'variable' points to. not the value within. Only variables with
   type 'bool' should use parameter BOOL.

   The type separation is necessary since int and bool are fundamentally
   different and bit-incompatible types and can not share the same access
   code. */

bool set_option(char* string, void* variable, enum optiontype type,
                char* options[], int numoptions, void (*function)(int))
{
    bool done = false;
    int button;
    int* intvar = (int*)variable;
    bool* boolvar = (bool*)variable;
    int oldval = 0;

    if (type==INT)
        oldval=*intvar;
    else
        oldval=*boolvar;

#ifdef HAVE_LCD_BITMAP
    if(global_settings.statusbar)
        lcd_setmargins(0, STATUSBAR_HEIGHT);
    else
        lcd_setmargins(0, 0);
#endif

    lcd_clear_display();
    lcd_puts_scroll(0, 0, string);

    while ( !done ) {
        lcd_puts(0, 1, options[type==INT ? *intvar : (int)*boolvar]);
#ifdef HAVE_LCD_BITMAP
        status_draw(true);
#endif
        lcd_update();

        button = button_get_w_tmo(HZ/2);
        switch (button) {
#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_UP:
            case BUTTON_UP | BUTTON_REPEAT:
#else
            case BUTTON_RIGHT:
            case BUTTON_RIGHT | BUTTON_REPEAT:
#endif
                if (type == INT) {
                    if ( *intvar < (numoptions-1) )
                        (*intvar)++;
                    else
                        (*intvar) -= (numoptions-1);
                }
                else
                    *boolvar = !*boolvar;
                break;

#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_DOWN:
            case BUTTON_DOWN | BUTTON_REPEAT:
#else
            case BUTTON_LEFT:
            case BUTTON_LEFT | BUTTON_REPEAT:
#endif
                if (type == INT) {
                    if ( *intvar > 0 )
                        (*intvar)--;
                    else
                        (*intvar) += (numoptions-1);
                }
                else
                    *boolvar = !*boolvar;
                break;

#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_LEFT:
            case BUTTON_PLAY:
#else
            case BUTTON_PLAY:
#endif
                done = true;
                break;

#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_OFF:
#else
            case BUTTON_STOP:
            case BUTTON_MENU:
#endif
                if (((type==INT) && (*intvar != oldval)) ||
                    ((type==BOOL) && (*boolvar != (bool)oldval))) {
                    if (type==INT)
                        *intvar=oldval;
                    else
                        *boolvar=oldval;
                    lcd_stop_scroll();
                    lcd_puts(0, 0, str(LANG_MENU_SETTING_CANCEL));
                    lcd_update();
                    sleep(HZ/2);
                }
                done = true;
                break;

            case SYS_USB_CONNECTED:
                usb_screen();
                return true;
        }

        if ( function && button != BUTTON_NONE) {
            if (type == INT)
                function(*intvar);
            else
                function(*boolvar);
        }
    }
    lcd_stop_scroll();
    return false;
}

#ifdef HAVE_LCD_BITMAP
#define INDEX_X 0
#define INDEX_Y 1
#define INDEX_WIDTH 2
bool set_time(char* string, int timedate[])
{
    bool done = false;
    int button;
    int min = 0, steps = 0;
    int cursorpos = 0;
    int lastcursorpos = !cursorpos;
    unsigned char buffer[19];
    int realyear;
    int julianday;
    int i;
    unsigned char reffub[5];
    unsigned int width, height;
    unsigned int separator_width, weekday_width;
    unsigned int line_height, prev_line_height;
    int dayname[] = {LANG_WEEKDAY_SUNDAY,
                     LANG_WEEKDAY_MONDAY,
                     LANG_WEEKDAY_TUESDAY,
                     LANG_WEEKDAY_WEDNESDAY,
                     LANG_WEEKDAY_THURSDAY,
                     LANG_WEEKDAY_FRIDAY,
                     LANG_WEEKDAY_SATURDAY};
    int monthname[] = {LANG_MONTH_JANUARY,
                       LANG_MONTH_FEBRUARY,
                       LANG_MONTH_MARCH,
                       LANG_MONTH_APRIL,
                       LANG_MONTH_MAY,
                       LANG_MONTH_JUNE,
                       LANG_MONTH_JULY,
                       LANG_MONTH_AUGUST,
                       LANG_MONTH_SEPTEMBER,
                       LANG_MONTH_OCTOBER,
                       LANG_MONTH_NOVEMBER,
                       LANG_MONTH_DECEMBER};
    char cursor[][3] = {{ 0,  8, 12}, {18,  8, 12}, {36,  8, 12},
                        {24, 16, 24}, {54, 16, 18}, {78, 16, 12}};
    char daysinmonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    
    int monthname_len = 0, dayname_len = 0;


#ifdef HAVE_LCD_BITMAP
    if(global_settings.statusbar)
        lcd_setmargins(0, STATUSBAR_HEIGHT);
    else
        lcd_setmargins(0, 0);
#endif
    lcd_clear_display();
    lcd_puts_scroll(0, 0, string);

    while ( !done ) {
        /* calculate the number of days in febuary */
        realyear = timedate[3] + 2000;
        if((realyear % 4 == 0 && !(realyear % 100 == 0)) || realyear % 400 == 0)
            daysinmonth[1] = 29;
        else
            daysinmonth[1] = 28;

        /* fix day if month or year changed */
        if (timedate[5] > daysinmonth[timedate[4] - 1])
            timedate[5] = daysinmonth[timedate[4] - 1];

        /* calculate day of week */
        julianday = 0;
        for(i = 0; i < timedate[4] - 1; i++) {
           julianday += daysinmonth[i];
        }
        julianday += timedate[5];
        timedate[6] = (realyear + julianday + (realyear - 1) / 4 -
                       (realyear - 1) / 100 + (realyear - 1) / 400 + 7 - 1) % 7;

        snprintf(buffer, sizeof(buffer), "%02d:%02d:%02d ",
                 timedate[0], timedate[1], timedate[2]);
        lcd_puts(0, 1, buffer);

        /* recalculate the positions and offsets */
        lcd_getstringsize(string, &width, &prev_line_height);
        lcd_getstringsize(buffer, &width, &line_height);
        lcd_getstringsize(":", &separator_width, &height);

        /* hour */
        strncpy(reffub, buffer, 2);
        reffub[2] = '\0';
        lcd_getstringsize(reffub, &width, &height);
        cursor[0][INDEX_X] = 0;
        cursor[0][INDEX_Y] = prev_line_height;
        cursor[0][INDEX_WIDTH] = width;

        /* minute */
        strncpy(reffub, buffer + 3, 2);
        reffub[2] = '\0';
        lcd_getstringsize(reffub, &width, &height);
        cursor[1][INDEX_X] = cursor[0][INDEX_WIDTH] + separator_width;
        cursor[1][INDEX_Y] = prev_line_height;
        cursor[1][INDEX_WIDTH] = width;

        /* second */
        strncpy(reffub, buffer + 6, 2);
        reffub[2] = '\0';
        lcd_getstringsize(reffub, &width, &height);
        cursor[2][INDEX_X] = cursor[0][INDEX_WIDTH] + separator_width +
                             cursor[1][INDEX_WIDTH] + separator_width;
        cursor[2][INDEX_Y] = prev_line_height;
        cursor[2][INDEX_WIDTH] = width;

        lcd_getstringsize(buffer, &width, &prev_line_height);

        snprintf(buffer, sizeof(buffer), "%s 20%02d %s %02d ",
                 str(dayname[timedate[6]]), timedate[3],
                 str(monthname[timedate[4] - 1]), timedate[5]);
        lcd_puts(0, 2, buffer);

        /* recalculate the positions and offsets */
        lcd_getstringsize(buffer, &width, &line_height);

        /* store these 2 to prevent _repeated_ strlen calls */
        monthname_len = strlen(str(monthname[timedate[4] - 1]));
        dayname_len = strlen(str(dayname[timedate[6]]));

        /* weekday */
        strncpy(reffub, buffer, dayname_len);
        reffub[dayname_len] = '\0';
        lcd_getstringsize(reffub, &weekday_width, &height);
        lcd_getstringsize(" ", &separator_width, &height);

        /* year */
        strncpy(reffub, buffer + dayname_len + 1, 4);
        reffub[4] = '\0';
        lcd_getstringsize(reffub, &width, &height);
        cursor[3][INDEX_X] = weekday_width + separator_width;
        cursor[3][INDEX_Y] = cursor[0][INDEX_Y] + prev_line_height;
        cursor[3][INDEX_WIDTH] = width;

        /* month */
        strncpy(reffub, buffer + dayname_len + 6, monthname_len);
        reffub[monthname_len] = '\0';
        lcd_getstringsize(reffub, &width, &height);
        cursor[4][INDEX_X] = weekday_width + separator_width +
                             cursor[3][INDEX_WIDTH] + separator_width;
        cursor[4][INDEX_Y] = cursor[0][INDEX_Y] + prev_line_height;
        cursor[4][INDEX_WIDTH] = width;

        /* day */
        strncpy(reffub, buffer + dayname_len + monthname_len + 7, 2);
        reffub[2] = '\0';
        lcd_getstringsize(reffub, &width, &height);
        cursor[5][INDEX_X] = weekday_width + separator_width +
                             cursor[3][INDEX_WIDTH] + separator_width +
                             cursor[4][INDEX_WIDTH] + separator_width;
        cursor[5][INDEX_Y] = cursor[0][INDEX_Y] + prev_line_height;
        cursor[5][INDEX_WIDTH] = width;

        lcd_invertrect(cursor[cursorpos][INDEX_X],
                       cursor[cursorpos][INDEX_Y] + lcd_getymargin(),
                       cursor[cursorpos][INDEX_WIDTH],
                       line_height);

        lcd_puts(0, 4, str(LANG_TIME_SET));
        lcd_puts(0, 5, str(LANG_TIME_REVERT));
#ifdef HAVE_LCD_BITMAP
        status_draw(true);
#endif
        lcd_update();

        /* calculate the minimum and maximum for the number under cursor */
        if(cursorpos!=lastcursorpos) {
            lastcursorpos=cursorpos;
            switch(cursorpos) {
                case 0: /* hour */
                    min = 0;
                    steps = 24;
                    break;
                case 1: /* minute */
                case 2: /* second */
                    min = 0;
                    steps = 60;
                    break;
                case 3: /* year */
                    min = 0;
                    steps = 100;
                    break;
                case 4: /* month */
                    min = 1;
                    steps = 12;
                    break;
                case 5: /* day */
                    min = 1;
                    steps = daysinmonth[timedate[4] - 1];
                    break;
            }
        }

        button = button_get_w_tmo(HZ/2);
        switch ( button ) {
            case BUTTON_LEFT:
                cursorpos = (cursorpos + 6 - 1) % 6;
                break;
            case BUTTON_RIGHT:
                cursorpos = (cursorpos + 6 + 1) % 6;
                break;
            case BUTTON_UP:
            case BUTTON_UP | BUTTON_REPEAT:
                timedate[cursorpos] = (timedate[cursorpos] + steps - min + 1) %
                    steps + min;
                if(timedate[cursorpos] == 0)
                    timedate[cursorpos] += min;
                break;
            case BUTTON_DOWN:
            case BUTTON_DOWN | BUTTON_REPEAT:
                timedate[cursorpos]=(timedate[cursorpos]+steps - min - 1) % 
                    steps + min;
                if(timedate[cursorpos] == 0)
                    timedate[cursorpos] += min;
                break;
            case BUTTON_ON:
                done = true;
                if (timedate[6] == 0) /* rtc needs 1 .. 7 */
                    timedate[6] = 7;
                break;
            case BUTTON_OFF:
                done = true;
                timedate[0] = -1;
                break;
#ifdef HAVE_RECORDER_KEYPAD
            case BUTTON_F3:
#ifdef HAVE_LCD_BITMAP
                global_settings.statusbar = !global_settings.statusbar;
                settings_save();
                if(global_settings.statusbar)
                    lcd_setmargins(0, STATUSBAR_HEIGHT);
                else
                    lcd_setmargins(0, 0);
                lcd_clear_display();
                lcd_puts_scroll(0, 0, string);
#endif
                break;
#endif

            case SYS_USB_CONNECTED:
                usb_screen();
                return true;
        }
    }

    return false;
}
#endif