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.
Diff: main.cpp
- Revision:
- 0:29726aa3572b
- Child:
- 1:a15c639615a9
diff -r 000000000000 -r 29726aa3572b main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Fri Dec 26 13:37:09 2014 +0000
@@ -0,0 +1,19 @@
+#include "main.h"
+
+Serial pc(SERIAL_TX, SERIAL_RX);
+
+int main()
+{
+ pc.baud(115200);
+ pc.printf("Hello World !\n");
+
+ AD7792_Init();
+ AD7792_test();
+
+ while (1) {
+ //pc.printf("%X\n",AD7792_Status());
+
+ wait_ms(100);
+ }
+}
+