An RC5 decoder and preamp controller. Written on the LPC11U24, Ported to LPC1114 and now 100% stable (January 2016)

Dependents:   AppleRemoteController_copy_Production_Version AppleRemoteController_Reference_Only

Pindef11U24.h

Committer:
andrewcrussell
Date:
17 months ago
Revision:
10:7a93d34a419a
Parent:
0:83d4a20e7bc7

File content as of revision 10:7a93d34a419a:

/************************************ Pinfef11U24.h *******************************/   

DigitalOut FWD1(p12);       // the are the motor 'H' bridge drive signals
DigitalOut REV1(p11);       // when the volume controll motor is not being driven 
//DigitalOut REV1(p11);       // they are all OFF
//DigitalOut REV2(p13);

DigitalOut muteout(p30);    // drives the mute relay via a mosfet or transistor
InterruptIn mute_int(p26);  // mute p/button interrupt
DigitalIn mute(p26);        // mute input from associated pushbutton

InterruptIn rc5int(p24);    // this is the R/C interrupt triggered by the IRx data out
DigitalIn rc5dat(p24);      // data is read in from here - its coming from the IRx data out

InterruptIn select_int(p5); // select rotary encoder interrupt - we use the 'A' O/P to generate the interrupt  
DigitalIn sela(p5);         // select input rotary enc input A
DigitalIn selb(p6);         // select input rotary enc input B

DigitalIn stdby(p21);       // standby function p/button input
InterruptIn stdby_int(p21); // standby p/button interrupt in

InterruptIn recloop_int(p23);   //record loop interrupt
DigitalIn recloop_in(p23);      // record loop p/button input
DigitalOut recloop_out(p22);    // drives record loop relay via mosfet or transistor      

DigitalOut power_ind(p33);  // this pin drives the standby controller - LOW = OFF; use regulators with standby inpu

BusOut select_drv(p15, p16, p17, p18, p19, p20); //these are the select relay drivers
// note that we do not explicitly define the input select output ports because we just move the active
// output port bit around in  a continuos loop with each depress of the select button.  Drive the associated
// input relays via a mosfet or transistor

// DigitalOut myled(LED1); // for test purposes only - on the mbed module - comment out when not used
// DigitalOut myled2(LED2);
// DigitalOut sync(p29); //this is a sync pin that is toggled during IR read - used for debug only