Hackaday demo: Signal generator

Dependencies:   SDFileSystem mbed

command.h

Committer:
wd5gnr
Date:
2015-09-15
Revision:
1:c229c3ceb909
Parent:
0:8baa10bd07de

File content as of revision 1:c229c3ceb909:

#ifndef __COMMAND_H
#define __COMMAND_H 1

#define LOD_FLT -1
#define LOD_HEX 0
#define LOD_DEC 1

void help(void);
void zap(void);
void load(int decflag);
void timebase(void);
void command(void);

#endif