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.
Fork of benchmark by
Diff: main.cpp
- Revision:
- 2:fc68d524dd7d
- Parent:
- 1:f91e7bc0e244
- Child:
- 3:ec2e20a9bd03
--- a/main.cpp Mon Aug 17 20:14:39 2015 +0000
+++ b/main.cpp Thu Nov 19 21:41:58 2015 +0000
@@ -13,13 +13,13 @@
*/
#define ITERATIONS 1000000 // Number of calculations.
-#define CLOCK 100 // Clock freqency in MHz
+#define CLOCK 48 // Clock freqency in MHz
Timer timer; // Timer..
Serial pc(USBTX, USBRX);
float number_of_cycles, single_operation_time;
-//volatile int a, b, c; // Int operands and result. Must be volatile!
-volatile float a, b, c; // Float operands and result. Must be volatile!
+volatile int a, b, c; // Int operands and result. Must be volatile!
+//volatile float a, b, c; // Float operands and result. Must be volatile!
//volatile double a, b, c; // Float operands and result. Must be volatile!
int main() {
@@ -44,7 +44,7 @@
this for loop. */
for (i=0; i<ITERATIONS; i++){
-// a = b;
+ a = b;
// c = a+b;
// c = a*b;
// c = a/b;
