Final Project files for mBed development.

Dependencies:   m3pi mbed

main.c

Committer:
John Wilkey
Date:
2014-11-12
Revision:
5:01882c3de2dc
Parent:
driver.c@ 1:7e0243c27ecb
Child:
6:00b7198f0b51

File content as of revision 5:01882c3de2dc:

/**
 * @file    driver.c
 * @brief   Basic driver program for our robot's controller logic. 
 *
 * Maybe add lots of stuff here or maybe split it off into
 * multiple subfiles?
 *
 * @author  John Wilkey
 */
#include "project.h"

/** 
 * These are global data Used externally in all other files 
 */
m3pi            pi;
digi_out_pins   out_pins;

/**
 * @brief Entry point. Main loop.
 */
int main()
{
    pretty_print("PiCO");
    return EXIT_SUCCESS;
}