Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor doc fix #807

Merged
merged 1 commit into from
Jun 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/libraries/icubmod/embObjMultipleFTsensors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ This device should be used with an XML like the following:
-->
<group name="SETTINGS">
<param name="enabledSensors"> l_foot_ft1 l_foot_ft2 l_foot_ft3 </param>
<param name="ftPeriod"> 10 10 10 </param>
<param name="temperaturePeriod"> 1000 1000 0 </param>
<param name="ftPeriod"> 10 10 10 </param> <!-- msec -->
<param name="temperaturePeriod"> 1000 1000 0 </param> <!-- msec -->
<param name="useCalibration"> true false true </param>
</group>

<group name="CANMONITOR">
<param name="checkPeriod"> 100 </param>
<param name="checkPeriod"> 100 </param> <!-- msec -->
<param name="reportMode"> ALL </param>
<param name="ratePeriod"> 20000 </param>
<param name="ratePeriod"> 20000 </param> <!-- msec -->
</group>
</group>
</device>
Expand All @@ -98,6 +98,8 @@ This device should be used with an XML like the following:
</device>
```

`Note that all the times are expressed in milliseconds.`

## 2.1. Raw ADC data or FT data
To log raw data directly from ADC output use the param with the name `useCalibration`

Expand Down