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.
Dependencies: mbed
main.cpp
- Committer:
- screamer
- Date:
- 2014-04-11
- Revision:
- 0:ccfe324ca25b
- Child:
- 1:5863255898a3
File content as of revision 0:ccfe324ca25b:
#include "mbed.h"
BusOut bus1(D0, D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15);
BusOut bus2(A5, A4, A3, A2, A1, A0);
int i;
int main()
{
for (i=0; i<65535; i++) {
bus1 = i;
bus2 = i;
wait(0.001);
}
}