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: mbed MODSERIAL FATFileSystem
System/conversions.cpp@9:d5fcdcb3c89d, 2017-10-20 (annotated)
- Committer:
- mkelly10
- Date:
- Fri Oct 20 11:41:22 2017 +0000
- Revision:
- 9:d5fcdcb3c89d
Tested 10/19/17 Folders
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mkelly10 | 9:d5fcdcb3c89d | 1 | #include "conversions.hpp" |
| mkelly10 | 9:d5fcdcb3c89d | 2 | |
| mkelly10 | 9:d5fcdcb3c89d | 3 | float counts_to_dist(int count) |
| mkelly10 | 9:d5fcdcb3c89d | 4 | { |
| mkelly10 | 9:d5fcdcb3c89d | 5 | float conv = -0.1912*count+507.2; |
| mkelly10 | 9:d5fcdcb3c89d | 6 | return conv; |
| mkelly10 | 9:d5fcdcb3c89d | 7 | |
| mkelly10 | 9:d5fcdcb3c89d | 8 | }; |