Game For ECE 2035
Dependencies: mbed wave_player 4DGL-uLCD-SE MMA8452
hardware.cpp@1:399033d39feb, 2018-04-04 (annotated)
- Committer:
- rconnorlawson
- Date:
- Wed Apr 04 21:11:07 2018 +0000
- Revision:
- 1:399033d39feb
- Parent:
- 0:35660d7952f7
- Child:
- 6:c9695079521d
Fix DACout to use Pin 26 instead of Pin 25.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rconnorlawson | 0:35660d7952f7 | 1 | // This header has all the (extern) declarations of the globals. |
rconnorlawson | 0:35660d7952f7 | 2 | // "extern" means "this is instantiated somewhere, but here's what the name |
rconnorlawson | 0:35660d7952f7 | 3 | // means. |
rconnorlawson | 0:35660d7952f7 | 4 | #include "globals.h" |
rconnorlawson | 0:35660d7952f7 | 5 | |
rconnorlawson | 0:35660d7952f7 | 6 | #include "hardware.h" |
rconnorlawson | 0:35660d7952f7 | 7 | |
rconnorlawson | 0:35660d7952f7 | 8 | // We need to actually instantiate all of the globals (i.e. declare them once |
rconnorlawson | 0:35660d7952f7 | 9 | // without the extern keyword). That's what this file does! |
rconnorlawson | 0:35660d7952f7 | 10 | |
rconnorlawson | 0:35660d7952f7 | 11 | // Hardware initialization: Instantiate all the things! |
rconnorlawson | 0:35660d7952f7 | 12 | uLCD_4DGL uLCD(p9,p10,p11); // LCD Screen (tx, rx, reset) |
rconnorlawson | 0:35660d7952f7 | 13 | //SDFileSystem sd(p5, p6, p7, p8, "sd"); // SD Card(mosi, miso, sck, cs) |
rconnorlawson | 0:35660d7952f7 | 14 | Serial pc(USBTX,USBRX); // USB Console (tx, rx) |
rconnorlawson | 0:35660d7952f7 | 15 | MMA8452 acc(p28, p27, 100000); // Accelerometer (sda, sdc, rate) |
rconnorlawson | 0:35660d7952f7 | 16 | DigitalIn button1(p21); // Pushbuttons (pin) |
rconnorlawson | 0:35660d7952f7 | 17 | DigitalIn button2(p22); |
rconnorlawson | 0:35660d7952f7 | 18 | DigitalIn button3(p23); |
rconnorlawson | 0:35660d7952f7 | 19 | AnalogOut DACout(p18); // Speaker (pin) |
rconnorlawson | 1:399033d39feb | 20 | PwmOut speaker(p26); |
rconnorlawson | 0:35660d7952f7 | 21 | wave_player waver(&DACout); |
rconnorlawson | 0:35660d7952f7 | 22 | |
rconnorlawson | 0:35660d7952f7 | 23 | // Some hardware also needs to have functions called before it will set up |
rconnorlawson | 0:35660d7952f7 | 24 | // properly. Do that here. |
rconnorlawson | 0:35660d7952f7 | 25 | int hardware_init() |
rconnorlawson | 0:35660d7952f7 | 26 | { |
rconnorlawson | 0:35660d7952f7 | 27 | // Crank up the speed |
rconnorlawson | 0:35660d7952f7 | 28 | uLCD.baudrate(3000000); |
rconnorlawson | 0:35660d7952f7 | 29 | pc.baud(115200); |
rconnorlawson | 0:35660d7952f7 | 30 | |
rconnorlawson | 0:35660d7952f7 | 31 | //Initialize pushbuttons |
rconnorlawson | 0:35660d7952f7 | 32 | button1.mode(PullUp); |
rconnorlawson | 0:35660d7952f7 | 33 | button2.mode(PullUp); |
rconnorlawson | 0:35660d7952f7 | 34 | button3.mode(PullUp); |
rconnorlawson | 0:35660d7952f7 | 35 | |
rconnorlawson | 0:35660d7952f7 | 36 | return ERROR_NONE; |
rconnorlawson | 0:35660d7952f7 | 37 | } |
rconnorlawson | 0:35660d7952f7 | 38 | |
rconnorlawson | 0:35660d7952f7 | 39 | GameInputs read_inputs() |
rconnorlawson | 0:35660d7952f7 | 40 | { |
rconnorlawson | 0:35660d7952f7 | 41 | GameInputs in; |
rconnorlawson | 0:35660d7952f7 | 42 | return in; |
rconnorlawson | 0:35660d7952f7 | 43 | } |