Luke Cartwright / Mbed 2 deprecated ELEC2645_Project_el18loc_nearlythere

Dependencies:   mbed

Startup/startup.h

Committer:
lukeocarwright
Date:
2020-05-07
Revision:
11:6ae098535da9
Parent:
10:258a1eca02cc
Child:
14:9cfe0041cc4e

File content as of revision 11:6ae098535da9:

#ifndef STARTUP_H
#define STARTUP_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "LUTs.h"

/** startup class
 * @author Luke Cartwright, University of Leeds
 * @brief: manages startup and initialisation
 * @date May 2020
*/
 volatile extern uint16_t sin_wavtable[1024];
 volatile extern uint16_t tri_wavtable[1024];
 volatile extern uint16_t pulse_wavtable[1024];

class startup
{
public:
//vaiables
float fl;
    //methods
    //constructor
    startup();

    //destructior
    ~startup();
    
    void initialise(N5110 &lcd, Gamepad &pad);

private:
};

#endif