summaryrefslogtreecommitdiffstats
path: root/apps/iap.c
blob: ecf70b2e6979241ddb35ac3b7b3ab23f3a8fefb1 (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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2002 by Alan Korr & Nick Robinson
 *
 * 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 <stdlib.h>
#include <stdarg.h>
#include <string.h>

#include "iap.h"
#include "button.h"
#include "config.h"
#include "cpu.h"
#include "system.h"
#include "kernel.h"
#include "serial.h"
#include "appevents.h"

#include "playlist.h"
#include "playback.h"
#include "audio.h"
#include "settings.h"
#include "metadata.h"
#include "wps.h"
#include "sound.h"
#include "action.h"
#include "powermgmt.h"

#include "tuner.h"
#include "ipod_remote_tuner.h"

static volatile int iap_pollspeed = 0;
static volatile bool iap_remotetick = true;
static bool iap_setupflag = false, iap_updateflag = false;
static int iap_changedctr = 0;

static unsigned long iap_remotebtn = 0;
static int iap_repeatbtn = 0;
static bool iap_btnrepeat = false, iap_btnshuffle = false;

static unsigned char serbuf[RX_BUFLEN];
static int serbuf_i = 0;

static unsigned char response[TX_BUFLEN];
static int responselen;

static void iap_task(void)
{
    static int count = 0;

    count += iap_pollspeed;
    if (count < (500/10)) return;

    /* exec every 500ms if pollspeed == 1 */
    count = 0;
    queue_post(&button_queue, SYS_IAP_PERIODIC, 0);
}

/* called by playback when the next track starts */
static void iap_track_changed(void *ignored)
{
    (void)ignored;
    iap_changedctr = 1;
}

void iap_setup(int ratenum)
{
    iap_bitrate_set(ratenum);
    iap_pollspeed = 0;
    iap_remotetick = true;
    iap_updateflag = false;
    iap_changedctr = 0;
    iap_setupflag = true;
    iap_remotebtn = BUTTON_NONE;
    tick_add_task(iap_task);
    add_event(PLAYBACK_EVENT_TRACK_CHANGE, false, iap_track_changed);
}

void iap_bitrate_set(int ratenum)
{
    switch(ratenum)
    {
        case 0:
            serial_bitrate(0);
            break;
        case 1:
            serial_bitrate(9600);
            break;
        case 2:
            serial_bitrate(19200);
            break;
        case 3:
            serial_bitrate(38400);
            break;
        case 4:
            serial_bitrate(57600);
            break;
    }
}

/* Message format:
   0xff
   0x55
   length
   mode
   command (2 bytes)
   parameters (0-n bytes)
   checksum (length+mode+parameters+checksum == 0)
*/

void iap_send_pkt(const unsigned char * data, int len)
{
    int i, chksum;
    
    if(len > TX_BUFLEN-4) len = TX_BUFLEN-4;
    responselen = len + 4;
    
    response[0] = 0xFF;
    response[1] = 0x55;
    
    chksum = response[2] = len;
    for(i = 0; i < len; i ++)
    {
        chksum += data[i];
        response[i+3] = data[i];
    }

    response[i+3] = 0x100 - (chksum & 0xFF);
    
    for(i = 0; i < responselen; i ++)
    {
        while (!tx_rdy()) ;
        tx_writec(response[i]);
    }
}    

bool iap_getc(unsigned char x)
{
    static unsigned char last_x = 0;
    static bool newpkt = true;
    static unsigned char chksum = 0;
            
    /* Restart if the sync word is seen */
    if(x == 0x55 && last_x == 0xff/* && newpkt*/)
    {
        serbuf[0] = 0;
        serbuf_i = 0;
        chksum = 0;
        newpkt = false;
    }
    else
    {
        if(serbuf_i >= RX_BUFLEN)
            serbuf_i = 0;

        serbuf[serbuf_i++] = x;
        chksum += x;
    }
    last_x = x;

    /* Broadcast to queue if we have a complete message */
    if(serbuf_i && (serbuf_i == serbuf[0]+2))
    {
        serbuf_i = 0;
        newpkt = true;
        if(chksum == 0)
            queue_post(&button_queue, SYS_IAP_HANDLEPKT, 0);
    }
    return newpkt;
}

void iap_periodic(void)
{
    if(!iap_setupflag) return;
    if(!iap_pollspeed) return;
    
    unsigned char data[] = {0x04, 0x00, 0x27, 0x04, 0x00, 0x00, 0x00, 0x00};
    unsigned long time_elapsed = audio_current_track()->elapsed;

    time_elapsed += wps_get_ff_rewind_count();

    data[3] = 0x04; /* playing */

    /* If info has changed, don't flag it right away */
    if(iap_changedctr && iap_changedctr++ >= iap_pollspeed * 2)
    {
        /* track info has changed */
        iap_changedctr = 0;
        data[3] = 0x01; /* 0x02 has same effect?  */
        iap_updateflag = true;
    }

    data[4] = time_elapsed >> 24;
    data[5] = time_elapsed >> 16;
    data[6] = time_elapsed >> 8;
    data[7] = time_elapsed;
    iap_send_pkt(data, sizeof(data));
}

static void iap_set_remote_volume(void)
{
    unsigned char data[] = {0x03, 0x0D, 0x04, 0x00, 0x00};
    data[4] = (char)((global_settings.volume+58) * 4);
    iap_send_pkt(data, sizeof(data));
}

static void cmd_ok_mode0(unsigned char cmd)
{
    unsigned char data[] = {0x00, 0x02, 0x00, 0x00};
    data[3] = cmd;  /* respond with cmd */
    iap_send_pkt(data, sizeof(data));
}

static void iap_handlepkt_mode0(void)
{
    unsigned int cmd = serbuf[2];
    switch (cmd) {
        /* Identify */
        case 0x01:
        {
            /* FM transmitter sends this: */
            /* FF 55 06 00 01 05 00 02 01 F1 (mode switch) */
            if(serbuf[3] == 0x05)
            {
                sleep(HZ/3);
                /* RF Transmitter: Begin transmission */
                unsigned char data[] = {0x05, 0x02};
                iap_send_pkt(data, sizeof(data));
            }
            /* FM remote sends this: */
            /* FF 55 03 00 01 02 FA (1st thing sent) */
            else if(serbuf[3] == 0x02)
            {
                /* useful only for apple firmware */
            }
            break;
        }
    
        /* EnterRemoteUIMode, FM transmitter sends FF 55 02 00 05 F9 */
        case 0x05:
        {
            /* ACK Pending (3000 ms) */
            unsigned char data[] = {0x00, 0x02, 0x06,
                                    0x05, 0x00, 0x00, 0x0B, 0xB8};
            iap_send_pkt(data, sizeof(data));
            cmd_ok_mode0(cmd);
            break;
        }

        /* RequestiPodSoftwareVersion, Ipod FM remote sends FF 55 02 00 09 F5 */
        case 0x09:
        {
            /* ReturniPodSoftwareVersion, ipod5G firmware version */
            unsigned char data[] = {0x00, 0x0A, 0x01, 0x02, 0x01};
            iap_send_pkt(data, sizeof(data));
            break;
        } 

        /* RequestiPodModelNum */
        case 0x0D:
        {
            /* ipod is supposed to work only with 5G and nano 2G */
            /*{0x00, 0x0E, 0x00, 0x0B, 0x00, 0x05, 0x50, 0x41, 0x31, 0x34, 
                    0x37, 0x4C, 0x4C, 0x00};    PA147LL (IPOD 5G 60 GO) */
            /* ReturniPodModelNum */
            unsigned char data[] = {0x00, 0x0E, 0x00, 0x0B, 0x00, 0x10,
                                'R', 'O', 'C', 'K', 'B', 'O', 'X', 0x00};
            iap_send_pkt(data, sizeof(data));
            break;
        }

        /* RequestLingoProtocolVersion */
        case 0x0F:
        {
            /* ReturnLingoProtocolVersion */
            unsigned char data[] = {0x00, 0x10, 0x00, 0x01, 0x05};
            data[2] = serbuf[3];
            iap_send_pkt(data, sizeof(data));
            break;
        }

        /* IdentifyDeviceLingoes */
        case 0x13:
        {
            cmd_ok_mode0(cmd);

            if (serbuf[6] == 0x35)
            /* FM transmitter sends this: */
            /* FF 55 0E 00 13 00 00 00 35 00 00 00 04 00 00 00 00 A6 (??)*/
            {
                /* GetAccessoryInfo */
                unsigned char data2[] = {0x00, 0x27, 0x00};
                iap_send_pkt(data2, sizeof(data2));
                /* RF Transmitter: Begin transmission */
                unsigned char data3[] = {0x05, 0x02};
                iap_send_pkt(data3, sizeof(data3));
            }

            else
            {
                /* ipod fm remote sends this: */ 
                /* FF 55 0E 00 13 00 00 00 8D 00 00 00 0E 00 00 00 03 41 */
                if (serbuf[6] |= 0x80)
                    radio_present = 1;
                /* GetDevAuthenticationInfo */    
                unsigned char data4[] = {0x00, 0x14};
                iap_send_pkt(data4, sizeof(data4));
            }
            break;
        }

        /* RetDevAuthenticationInfo */
        case 0x15:
        {
            /* AckDevAuthenticationInfo */
            unsigned char data0[] = {0x00, 0x16, 0x00};
            iap_send_pkt(data0, sizeof(data0));
            /* GetAccessoryInfo */
            unsigned char data1[] = {0x00, 0x27, 0x00};
            iap_send_pkt(data1, sizeof(data1));
            /* AckDevAuthenticationStatus, mandatory to enable some hardware */
            unsigned char data2[] = {0x00, 0x19, 0x00};
            iap_send_pkt(data2, sizeof(data2));
            if (radio_present == 1)
            {
                /* GetTunerCaps */
                unsigned char data3[] = {0x07, 0x01};
                iap_send_pkt(data3, sizeof(data3));
            }
            iap_set_remote_volume();
            break;
        }

        /* RetDevAuthenticationSignature */
        case 0x18:
        {
            /* Isn't used since we don't send the 0x00 0x17 command */
            break;
        }

        /* GetIpodOptions */
        case 0x24:
        {
            /* RetIpodOptions (ipod video send this) */
            unsigned char data[] = {0x00, 0x25, 0x00, 0x00, 0x00,
                                    0x00, 0x00, 0x00, 0x00, 0x01};
            iap_send_pkt(data, sizeof(data));
            break;
        }
        
        /* default response is with cmd ok packet */
        default:
        {
            cmd_ok_mode0(cmd);
            break;
        }
    }
}

static void iap_handlepkt_mode2(void)
{
    if(serbuf[2] != 0) return;
    iap_remotebtn = BUTTON_NONE;
    iap_remotetick = false;
    
    if(serbuf[0] >= 3 && serbuf[3] != 0)
    {
        if(serbuf[3] & 1)
            iap_remotebtn |= BUTTON_RC_PLAY;
        if(serbuf[3] & 2)
            iap_remotebtn |= BUTTON_RC_VOL_UP;
        if(serbuf[3] & 4)
            iap_remotebtn |= BUTTON_RC_VOL_DOWN;
        if(serbuf[3] & 8)
            iap_remotebtn |= BUTTON_RC_RIGHT;
        if(serbuf[3] & 16)
            iap_remotebtn |= BUTTON_RC_LEFT;
    }
    else if(serbuf[0] >= 4 && serbuf[4] != 0)
    {
        if(serbuf[4] & 1) /* play */
        {
            if (audio_status() != AUDIO_STATUS_PLAY)
            {
                iap_remotebtn |= BUTTON_RC_PLAY;
                iap_repeatbtn = 2;
                iap_remotetick = false;
                iap_changedctr = 1;
            }
        }
        if(serbuf[4] & 2) /* pause */
        {
            if (audio_status() == AUDIO_STATUS_PLAY)
            {
                iap_remotebtn |= BUTTON_RC_PLAY;
                iap_repeatbtn = 2;
                iap_remotetick = false;
                iap_changedctr = 1;
            }
        }
        if((serbuf[4] & 128) && !iap_btnshuffle) /* shuffle */
        {
            iap_btnshuffle = true;
            if(!global_settings.playlist_shuffle)
            {
                global_settings.playlist_shuffle = 1;
                settings_save();
                if (audio_status() & AUDIO_STATUS_PLAY)
                    playlist_randomise(NULL, current_tick, true);
            }
            else if(global_settings.playlist_shuffle)
            {
                global_settings.playlist_shuffle = 0;
                settings_save();
                if (audio_status() & AUDIO_STATUS_PLAY)
                    playlist_sort(NULL, true);
            }
        }
        else
            iap_btnshuffle = false;
    }
    else if(serbuf[0] >= 5 && serbuf[5] != 0)
    {
        if((serbuf[5] & 1) && !iap_btnrepeat) /* repeat */
        {
            int oldmode = global_settings.repeat_mode;
            iap_btnrepeat = true;
        
            if (oldmode == REPEAT_ONE)
                    global_settings.repeat_mode = REPEAT_OFF;
            else if (oldmode == REPEAT_ALL)
                    global_settings.repeat_mode = REPEAT_ONE;
            else if (oldmode == REPEAT_OFF)
                    global_settings.repeat_mode = REPEAT_ALL;

            settings_save();
            if (audio_status() & AUDIO_STATUS_PLAY)
            audio_flush_and_reload_tracks();
        }
        else
            iap_btnrepeat = false;

        if(serbuf[5] & 16) /* ffwd */
        {
            iap_remotebtn |= BUTTON_RC_RIGHT;
        }
        if(serbuf[5] & 32) /* frwd */
        {
            iap_remotebtn |= BUTTON_RC_LEFT;
        }
    }
}

static void iap_handlepkt_mode3(void)
{
    unsigned int cmd = serbuf[2];
    switch (cmd)
    {
        /* some kind of status packet? */
        case 0x01:
        {
            unsigned char data[] = {0x03, 0x02, 0x00, 0x00, 0x00, 0x00};
            iap_send_pkt(data, sizeof(data));
            break;
        }

        case 0x08:
        {
            /* ACK */
            unsigned char data[] = {0x03, 0x00, 0x00, 0x08};
            iap_send_pkt(data, sizeof(data));
            break;
        }
        
        case 0x0C:
        {
            /* request ipod volume */
            if (serbuf[3] == 0x04)
            {
                iap_set_remote_volume();
            }
            break;
        }
        /* get volume from accessory */
        case 0x0E:
        {
            if (serbuf[3] == 0x04)
                global_settings.volume = (-58)+((int)serbuf[5]+1)/4;
                sound_set_volume(global_settings.volume);   /* indent BUG? */
            break;
        }
    }
}

static void cmd_ok_mode4(unsigned int cmd)
{
    unsigned char data[] = {0x04, 0x00, 0x01, 0x00, 0x00, 0x00};
    data[4] = (cmd >> 8) & 0xFF;
    data[5] = (cmd >> 0) & 0xFF;
    iap_send_pkt(data, sizeof(data));
}

static void iap_handlepkt_mode4(void)
{
    unsigned int cmd = (serbuf[2] << 8) | serbuf[3];
    switch (cmd)
    {
        /* Get data updated??? flag */
        case 0x0009:
        {
            unsigned char data[] = {0x04, 0x00, 0x0A, 0x00};
            data[3] = iap_updateflag ? 0 : 1;
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Set data updated??? flag */
        case 0x000B:
        {
            iap_updateflag = serbuf[4] ? 0 : 1;
            /* respond with cmd ok packet */
            cmd_ok_mode4(cmd);
            break;
        }
        /* Get iPod size? */
        case 0x0012:
        {
            unsigned char data[] = {0x04, 0x00, 0x13, 0x01, 0x0B};
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Get count of given types */
        case 0x0018:
        {
            unsigned char data[] = {0x04, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00};
            unsigned long num = 0;
            switch(serbuf[4]) /* type number */
            {
                case 0x01: /* total number of playlists */
                    num = 1;
                    break;
                case 0x05: /* total number of songs */
                    num = 1;
            }
            data[3] = num >> 24;
            data[4] = num >> 16;
            data[5] = num >> 8;
            data[6] = num;
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Get time and status */
        case 0x001C:
        {
            unsigned char data[] = {0x04, 0x00, 0x1D, 0x00, 0x00, 0x00, 
                                    0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
            struct mp3entry *id3 = audio_current_track();
            unsigned long time_total = id3->length;
            unsigned long time_elapsed = id3->elapsed;
            int status = audio_status();
            data[3] = time_total >> 24;
            data[4] = time_total >> 16;
            data[5] = time_total >> 8;
            data[6] = time_total;
            data[7] = time_elapsed >> 24;
            data[8] = time_elapsed >> 16;
            data[9] = time_elapsed >> 8;
            data[10] = time_elapsed;
            if (status == AUDIO_STATUS_PLAY)
                data[11] = 0x01; /* play */
            else if (status & AUDIO_STATUS_PAUSE)
                data[11] = 0x02; /* pause */ 
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Get current pos in playlist */
        case 0x001E:
        {
            unsigned char data[] = {0x04, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00};
            long playlist_pos = playlist_next(0);
            playlist_pos -= playlist_get_first_index(NULL);
            if(playlist_pos < 0)
                playlist_pos += playlist_amount();
            data[3] = playlist_pos >> 24;
            data[4] = playlist_pos >> 16;
            data[5] = playlist_pos >> 8;
            data[6] = playlist_pos;
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Get title of a song number */
        case 0x0020:
        /* Get artist of a song number */
        case 0x0022:
        /* Get album of a song number */
        case 0x0024:
        {
            unsigned char data[70] = {0x04, 0x00, 0xFF};
            struct mp3entry id3;
            int fd;
            size_t len;
            long tracknum = (signed long)serbuf[4] << 24 |
                            (signed long)serbuf[5] << 16 |
                            (signed long)serbuf[6] << 8 | serbuf[7];
            data[2] = serbuf[3] + 1;
            memcpy(&id3, audio_current_track(), sizeof(id3));
            tracknum += playlist_get_first_index(NULL);
            if(tracknum >= playlist_amount())
                tracknum -= playlist_amount();

            /* If the tracknumber is not the current one,
               read id3 from disk */
            if(playlist_next(0) != tracknum)
            {
                struct playlist_track_info info;
                playlist_get_track_info(NULL, tracknum, &info);
                fd = open(info.filename, O_RDONLY);
                memset(&id3, 0, sizeof(struct mp3entry));
                get_metadata(&id3, fd, info.filename);
                close(fd);
            }

            /* Return the requested track data */
            switch(serbuf[3])
            {
                case 0x20:
                    len = strlcpy((char *)&data[3], id3.title, 64);
                        iap_send_pkt(data, 4+len);
                    break;
                case 0x22:
                    len = strlcpy((char *)&data[3], id3.artist, 64);
                        iap_send_pkt(data, 4+len);
                    break;
                case 0x24:
                    len = strlcpy((char *)&data[3], id3.album, 64);
                        iap_send_pkt(data, 4+len);
                    break;
            }
            break;
        }
        /* Set polling mode */
        case 0x0026:
        {
            iap_pollspeed = serbuf[4] ? 1 : 0;
            /*respond with cmd ok packet */
            cmd_ok_mode4(cmd);
            break;
        }
        /* AiR playback control */
        case 0x0029:
        {
            /* respond with cmd ok packet */
            unsigned char data[] = {0x04, 0x00, 0x01, 0x00, 0x00, 0x29};
            iap_send_pkt(data, sizeof(data));
            switch(serbuf[4])
            {
                case 0x01: /* play/pause */
                    iap_remotebtn = BUTTON_RC_PLAY;
                    iap_repeatbtn = 2;
                    iap_remotetick = false;
                    iap_changedctr = 1;
                    break;
                case 0x02: /* stop */
                    iap_remotebtn = BUTTON_RC_PLAY|BUTTON_REPEAT;
                    iap_repeatbtn = 2;
                    iap_remotetick = false;
                    iap_changedctr = 1;
                    break;
                case 0x03: /* skip++ */
                    iap_remotebtn = BUTTON_RC_RIGHT;
                    iap_repeatbtn = 2;
                    iap_remotetick = false;
                    break;
                case 0x04: /* skip-- */
                    iap_remotebtn = BUTTON_RC_LEFT;
                    iap_repeatbtn = 2;
                    iap_remotetick = false;
                    break;
                case 0x05: /* ffwd */
                    iap_remotebtn = BUTTON_RC_RIGHT;
                    iap_remotetick = false;
                    if(iap_pollspeed) iap_pollspeed = 5;
                    break;
                case 0x06: /* frwd */
                    iap_remotebtn = BUTTON_RC_LEFT;
                    iap_remotetick = false;
                    if(iap_pollspeed) iap_pollspeed = 5;
                    break;
                case 0x07: /* end ffwd/frwd */
                    iap_remotebtn = BUTTON_NONE;
                    iap_remotetick = false;
                    if(iap_pollspeed) iap_pollspeed = 1;
                    break;
            }
            break;
        }
        /* Get shuffle mode */
        case 0x002C:
        {
            unsigned char data[] = {0x04, 0x00, 0x2D, 0x00};
            data[3] = global_settings.playlist_shuffle ? 1 : 0;
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Set shuffle mode */
        case 0x002E:
        {
            if(serbuf[4] && !global_settings.playlist_shuffle)
            {
                global_settings.playlist_shuffle = 1;
                settings_save();
                if (audio_status() & AUDIO_STATUS_PLAY)
                    playlist_randomise(NULL, current_tick, true);
            }
            else if(!serbuf[4] && global_settings.playlist_shuffle)
            {
                global_settings.playlist_shuffle = 0;
                settings_save();
                if (audio_status() & AUDIO_STATUS_PLAY)
                    playlist_sort(NULL, true);
            }

            
            /* respond with cmd ok packet */
            cmd_ok_mode4(cmd);
            break;
        }
        /* Get repeat mode */
        case 0x002F:
        {
            unsigned char data[] = {0x04, 0x00, 0x30, 0x00};
            if(global_settings.repeat_mode == REPEAT_OFF)
                data[3] = 0;
            else if(global_settings.repeat_mode == REPEAT_ONE)
                data[3] = 1;
            else
                data[3] = 2;
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Set repeat mode */
        case 0x0031:
        {
            int oldmode = global_settings.repeat_mode;
            if (serbuf[4] == 0)
                global_settings.repeat_mode = REPEAT_OFF;
            else if (serbuf[4] == 1)
                global_settings.repeat_mode = REPEAT_ONE;
            else if (serbuf[4] == 2)
                global_settings.repeat_mode = REPEAT_ALL;

            if (oldmode != global_settings.repeat_mode)
            {
                settings_save();
                if (audio_status() & AUDIO_STATUS_PLAY)
                    audio_flush_and_reload_tracks();
            }

            /* respond with cmd ok packet */
            cmd_ok_mode4(cmd);
            break;
        }        
        /* Get Screen Size */
        case 0x0033:
        {
            unsigned char data[] = {0x04, 0x00, 0x34,
                                    LCD_WIDTH >> 8, LCD_WIDTH & 0xff,
                                    LCD_HEIGHT >> 8, LCD_HEIGHT & 0xff,
                                    0x01};
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* Get number songs in current playlist */
        case 0x0035:
        {
            unsigned char data[] = {0x04, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00};
            unsigned long playlist_amt = playlist_amount();
            data[3] = playlist_amt >> 24;
            data[4] = playlist_amt >> 16;
            data[5] = playlist_amt >> 8;
            data[6] = playlist_amt;
            iap_send_pkt(data, sizeof(data));
            break;
        }                
        /* Jump to track number in current playlist */
        case 0x0037:
        {
            int paused = (is_wps_fading() || (audio_status() & AUDIO_STATUS_PAUSE));
            long tracknum = (signed long)serbuf[4] << 24 |
                            (signed long)serbuf[5] << 16 |
                            (signed long)serbuf[6] << 8 | serbuf[7];
            audio_pause();
            audio_skip(tracknum - playlist_next(0));
            if (!paused)
                audio_resume();
            
            /* respond with cmd ok packet */
            cmd_ok_mode4(cmd);
            break;
        }
        default:
        {
            /* default response is with cmd ok packet */
            cmd_ok_mode4(cmd);
            break;
        }
    }
}

static void iap_handlepkt_mode7(void)
{
    unsigned int cmd = serbuf[2];
    switch (cmd)
    {
        /* tuner capabilities */
        case 0x02:
        {
            /* do nothing */
            
            unsigned char data[] = {0x00, 0x27, 0x00};
            iap_send_pkt(data, sizeof(data));
            break;
        }
        /* actual tuner frequency */
        case 0x0A:
        /* fall through */
        /* tuner frequency from scan */
        case 0x13:
        {
            rmt_tuner_freq(serbuf);
            break;
        }
        /* RDS station name 0x21 1E 00 + ASCII text*/
        case 0x21:
        {
            rmt_tuner_rds_data(serbuf);
            break;
        }
    }
}

void iap_handlepkt(void)
{

    if(!iap_setupflag) return;
    if(serbuf[0] == 0) return;

    /* if we are waiting for a remote button to go out,
       delay the handling of the new packet */
    if(!iap_remotetick)
    {
        queue_post(&button_queue, SYS_IAP_HANDLEPKT, 0);
        return;
    }

    unsigned char mode = serbuf[1];
    switch (mode) {
    case 0: iap_handlepkt_mode0(); break;
    case 2: iap_handlepkt_mode2(); break;
    case 3: iap_handlepkt_mode3(); break;
    case 4: iap_handlepkt_mode4(); break;
    case 7: iap_handlepkt_mode7(); break;
    }

    serbuf[0] = 0;
}

int remote_control_rx(void)
{
    int btn = iap_remotebtn;
    if(iap_repeatbtn)
    {
        iap_repeatbtn--;
        if(!iap_repeatbtn)
        {
            iap_remotebtn = BUTTON_NONE;
            iap_remotetick = true;
        }
    }
    else
        iap_remotetick = true;

    return btn;
}

const unsigned char *iap_get_serbuf(void)
{
    return serbuf;
}