Hi,
Here's two more tests to better understand what's happening inside the K-Ceptors.
Please start by compiling the latest version of the notochord
with
git pull
git checkout develop
scons -j3 debug 1
Pick just one KC, we will use it as our test subject until we figure out what's happening.
You will have to perform the movements like in the magnetometer procedure, and record the results. Do these tests on the same spot you used for the last calibration.
For the first test run the notochord with this command:
bin/notochord --scan -t file -f kc_dump.csv -v1 -r
Explained:
- --scan will search for connected KCs instead of looking into the configuration file
- -t file put the transmision data on a file
- -f kc_dump_calib.log use a file named like this
- -v1 verbosity level 1 (include debug statements)
- -r transmit the raw data, without sensor fusion (sidenote: this flag was used to perform the calibration on the previous version, not any more)
For the second test a slightly different command:
bin/notochord --scan -t file -f kc_dump_nocalib.csv -v1 -r -k1
This time we are using the -k1 argument to tell the notochord to use the K-Ceptors as in Revision 1 . This is just a hack to make it not find the EEPROM, thus logging the uncalibrated data
Please post both files. You will find them in bin/logs
. And also include the captures of the console output of the notochord for both cases.