Eric
Do not send private messages with technical questions; they will be discarded. All technical questions must be posted publicly on the forum.
About
- Username
- Eric
- Joined
- Visits
- 9,275
- Last Active
- Roles
- Administrator
Comments
-
https://mbientlab.com/androiddocs/3/advanced_features.html#high-frequency-streaming
-
Reduce the streaming frequency or log the data. I haven't been able to reproduce the bus error on my openSUSE VM; I'll try on the Pi when I get it back. How long does your script run before it shows up?
-
Post your code
-
No, there are no set plans for a BT5 module yet.
-
@Ricardojt said: Hi, I have the same problem. My sensor is a MetaMotionR, I tried to do the firmware update through nRF but in the middle of the process the sensor is disconnected. This is normal? Has anyone had this problem before? …
-
I do not understand why the first thing you do is call DisconnectAsync since the device is not connected. Furthermore, you are never stopping the sensors, so you are leaving them continually attempting to stream data upon app termination. I'm no…
-
The accelerometer provides some processed data in addition to the raw sensor data. Those functions do exactly what their names say, that is, they enable certain features of the accelerometer.
-
https://mbientlab.com/community/discussion/comment/5273
-
You need to configure the bt connection for high frequency streaming: https://mbientlab.com/cppdocs/latest/advanced_features.html#high-frequency-streaming The "bus error" is most likely from some socket code used by the underling BT library. …
-
Which SDK are you using?
-
I pushed some changes to the C library, give them a try.
-
You don't have to stream data to sync it to the cloud.
-
Post the contents of the MetaBase config file.
-
* I am not sure what you are asking here. * Which console app project are you referring to? You have been able to run the example C projects so you should already have the required DLLs installed.
-
Those lines of code are just exception handling code. You need to determine which async task is returning the exception, that is ultimately being thrown by previous.wait(); Regarding your video, I am unable reproduce the error by continually run…
-
https://github.com/mbientlab/MetaWear-SDK-CSharp#usage
-
Which line of code is causing the exception? Your screen shot doesn't show me anything other than that the std::exception class is working as described. What are the steps to reproduce this exception? I have not run into this specific exception…
-
* I don't see why it wouldn't work; post your code. I'm also a bit confused about this point. You said you used the Android API but you are referencing C++ functions. * No. You could do something like press the button X times to reset. Co…
-
* Provide more details about the crash. Simply saying that your app crashes does not provide any information to work off of. * Use the Win10 plugin if you're building a Win10 app. * Your sample code is setting the odr to 2Hz.
-
https://github.com/mbientlab/PyWarble/issues/2
-
This is addressed in a previous thread: https://mbientlab.com/community/discussion/comment/4133/#Comment_4133
-
@devedag said: Thank´s Eric! Resetting solves the problem. But for my use case the workaround is a bit unpleasant because I am recording in a loop and therefore I need to reconnect the sensors each time after resetting. If you're r…
-
Replacement batteries are sold on the store page. If you're unsure of how to attach the battery, please consult a professional technician.
-
From the debug log, it looks like your system failed the compile the C++ SDK. You need to check that your system is properly setup to compile C++ code. 16833 verbose stack Error: metawear@0.1.2 install: `make OPT_FLAGS=-Wno-strict-aliasing -C Me…
-
This issue is already addressed in another thread: https://mbientlab.com/community/discussion/comment/6553#Comment_6553
-
Your issue probably has to do with the Android app life cycle. Long term data streaming should be moved to a background service.
-
What is the hardware revision of the board?
-
That is mostly a result of a missing null pointer check in the underlying C++ code, that was added in a later C++ SDK release. You can work around it by resetting the board instead of stopping/unsubscribing. @devedag said: Could someone als…
-
@devedag said: @Eric said: @devedag said: @Eric said: Set the NOBLE_HCI_DEVICE_ID env variable to the hci adapter number of the dongle to use, before executing MetaBase. You'll need to …
-
@devedag said: @Eric said: Internal acc settings are not exposed. What can I do with this function MetaWear.mbl_mw_acc_read_config then? That is used for when you are collecting data from a board that was not c…