Los Putacos / Mbed OS WearableDevice_Nucleo_New

Dependencies:   MPU9250_SPI

Fork of WearableDevice_Nucleo by Los Putacos

event.h

Committer:
gusteibolt
Date:
2017-10-12
Revision:
6:939df52d75c9
Parent:
5:18e89e309715
Child:
7:ebaaff27840b

File content as of revision 6:939df52d75c9:

/*
* Los Putacos
* Copyright (C) 2017, All rights reserved.
* ________________________________________ 
*
* Created by: Gustavo Campana, Michael Schmidt, Miguel Lopez
*       Date: 12-Oct-2017
*    Version: V0.1
*/

//-----------------------------------------------------------------
#ifndef EVENT_H_
#define EVENT_H_

// Your code here!
void print_stinrg(char);
void print_thread(void const);

void print_stinrg(char c = '*')
{
    pc.putc(c);
}

void print_thread(void const *argv)
{
    pc.printf((const char*)argv);
}


    
#endif // EVENT_H_
//-----------------------------------------------------------------