v1_lab3

Fork of DACandticker_sample by William Marsh

Files at this revision

API Documentation at this revision

Comitter:
WilliamMarshQMUL
Date:
Wed Jan 24 22:56:54 2018 +0000
Parent:
1:18e0f8aef32f
Commit message:
Update for mbed 5

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-os.lib Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show diff for this revision Revisions of this file
mbed.bld Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Feb 01 13:53:26 2017 +0000
+++ b/main.cpp	Wed Jan 24 22:56:54 2018 +0000
@@ -3,10 +3,11 @@
 // Periodically write to the AnalogOut to create a sine wave
 // Alternate between two fixed frequencies every 5 sec
 //
+// Updated for mbed 5
+
 // THIS VERSION HAS NO DEBUGGING CODE
 
 #include "mbed.h"
-#include "rtos.h"
 #include "sineTable.h"
 
 Ticker tick ;          // Creates periodic interrupt
@@ -14,7 +15,7 @@
 
 // Function called periodically
 // Write new value to AnalogOut 
-volatile int index = 0 ; // this variable is not just for debugging!!
+volatile int index = 0 ; // index into array of sin values
 void writeAout() {
     ao.write_u16(sine[index]) ;
     index = (index + 1) % 64 ;   
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-os.lib	Wed Jan 24 22:56:54 2018 +0000
@@ -0,0 +1,1 @@
+https://github.com/ARMmbed/mbed-os/#96d9a00d0a1d25095b330095fa81c40f7741777c
--- a/mbed-rtos.lib	Wed Feb 01 13:53:26 2017 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/mbed_official/code/mbed-rtos/#58563e6cba1e
--- a/mbed.bld	Wed Feb 01 13:53:26 2017 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/ad3be0349dc5
\ No newline at end of file