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: RingBuffer_RTOS mbed-rtos mbed
Revision 0:a8d5ff523eca, committed 2012-09-27
- Comitter:
- ykuroda
- Date:
- Thu Sep 27 14:50:02 2012 +0000
- Commit message:
- RTOS support
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/RingBuffer.lib Thu Sep 27 14:50:02 2012 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/ykuroda/code/RingBuffer_RTOS/#9adf0d5e0522
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Sep 27 14:50:02 2012 +0000
@@ -0,0 +1,60 @@
+/*
+ * Example Main
+ */
+#include "mbed.h"
+#include "RingBuffer.h"
+
+Serial pc(USBTX, USBRX);
+DigitalOut led1(LED1);
+DigitalOut led2(LED2);
+DigitalOut led3(LED3);
+RingBuffer rb(30);
+
+
+void
+save_thread(void const *argument)
+{
+ while (true) {
+
+ for(int i='A'; i<='Z'; i++) {
+ led2 = !led2;
+ rb.save(i);
+ wait(1);
+ }
+ }
+}
+
+
+void
+save_thread2(void const *argument)
+{
+ while (true) {
+
+ for(int i='0'; i<='9'; i++) {
+ led3 = !led3;
+ rb.save(i);
+ wait(1);
+ }
+ }
+}
+
+
+int
+main(void)
+{
+ Thread thread(save_thread);
+ Thread thread2(save_thread2);
+
+ while(true) {
+ led1 = !led1;
+ if(rb.check()) {
+ int c = rb.read();
+ pc.putc(c);
+ if(c=='Z') pc.putc('\n');
+
+ } else {
+ wait(0.1);
+ }
+ }
+ return 0;
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-rtos.lib Thu Sep 27 14:50:02 2012 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed-rtos/#9654a71f5a90
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Thu Sep 27 14:50:02 2012 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/cd19af002ccc \ No newline at end of file