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.
Dependents: ClassFRDM ClassLPC
main.cpp
- Committer:
- askksa12543
- Date:
- 2015-03-19
- Revision:
- 0:60c4436f7667
- Child:
- 1:9cfb17f74dcd
File content as of revision 0:60c4436f7667:
#include "mbed.h"
#include "C12832.h"
#include "DataComm.h"
DataComm test;
char data[4] = "Hi!";
int main()
{
test.setClockOut(D8);
test.setSerialOut(D7);
test.setClock(2000);
test.initiate_connection();
test.setDataSize(3);
test.send_data(data);
}