Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Pi_Swarm_Blank by
main.h
- Committer:
- jah128
- Date:
- 2014-12-22
- Revision:
- 8:a789ef4fde52
- Parent:
- 7:d03e54d9eb1c
- Child:
- 12:118f2b0ed8eb
File content as of revision 8:a789ef4fde52:
/******************************************************************************************* * * University of York Robot Lab Pi Swarm Robot Library * * (C) Dr James Hilder, Dept. Electronics & Computer Science, University of York * * Version 0.6 February 2014 * * Designed for use with the Pi Swarm Board (enhanced MBED sensor board) v1.2 * ******************************************************************************************/ #ifndef MAIN_H #define MAIN_H #include "piswarm.h" void handleUserRFCommand(char * data, char length); void handleUserRFCommand(char sender, char broadcast_message, char request_response, char id, char is_command, char function, char * data, char length); void handleUserRFResponse(char sender, char broadcast_message, char request_response, char id, char is_command, char function, char * data, char length); void processRawRFData(char * rstring, char cCount); void switch_pressed ( void ); #endif //MAIN_H