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
Diff: LTC1298/ltc1298.cpp
- Revision:
- 73:f6f378311c8d
- Parent:
- 68:8f549749b8ce
- Child:
- 99:9d0849f5fcd7
--- a/LTC1298/ltc1298.cpp Mon Jul 02 14:28:22 2018 +0000 +++ b/LTC1298/ltc1298.cpp Mon Jul 30 16:48:48 2018 +0000 @@ -168,4 +168,36 @@ int SpiADC::readCh7() { return ch7_filt; -} \ No newline at end of file +} + +int SpiADC::readRawCh0() { + return ch0_raw; +} + +int SpiADC::readRawCh1() { + return ch1_raw; +} + +int SpiADC::readRawCh2() { + return ch2_raw; +} + +int SpiADC::readRawCh3() { + return ch3_raw; +} + +int SpiADC::readRawCh4() { + return ch4_raw; +} + +int SpiADC::readRawCh5() { + return ch5_raw; +} + +int SpiADC::readRawCh6() { + return ch6_raw; +} + +int SpiADC::readRawCh7() { + return ch7_raw; +}