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: X_NUCLEO_IKS01A1-f255a2c75ecb mbed-rtos mbed
Diff: sensor.cpp
- Revision:
- 34:0d51133891d0
- Parent:
- 33:2ee6fbdad7b4
--- a/sensor.cpp Wed May 18 02:30:17 2016 +0000
+++ b/sensor.cpp Wed May 18 03:11:38 2016 +0000
@@ -5,9 +5,8 @@
#include "userMethods.h"
// Queue
-
Queue<log_data, QUEUESIZE> ExpansionBoard::queue;
-std::vector<log_data> ExpansionBoard::v;
+std::vector<log_data> v;
int * ExpansionBoard::n;
bool ExpansionBoard::flag;
@@ -39,7 +38,7 @@
//Send pointer to sample to the queue
queue.put(log_d);
- //v.push_back(*log_d);
+ v.push_back(*log_d);
printf("After vector");
