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.
Dependents: MAX5171BOB_Tester MAX5171BOB_14bit_Remote_Sense_SPI_DAC MAX5171BOB_Serial_Tester
Diff: MAX5171.cpp
- Revision:
- 7:564b438a0448
- Parent:
- 6:f661c4a61207
diff -r f661c4a61207 -r 564b438a0448 MAX5171.cpp
--- a/MAX5171.cpp Fri Apr 03 06:27:05 2020 +0000
+++ b/MAX5171.cpp Fri May 15 08:23:46 2020 +0000
@@ -254,7 +254,7 @@
cmdLine_microUSBserial.serial().printf(" 0x%2.2X", mosiData[byteIndex]);
}
// hex dump misoData[0..byteCount-1]
- cmdLine_microUSBserial.serial().printf(" MISO<-");
+ cmdLine_microUSBserial.serial().printf(" MISO<-");
for (unsigned int byteIndex = 0; byteIndex < numBytesTransferred; byteIndex++)
{
cmdLine_microUSBserial.serial().printf(" 0x%2.2X", misoData[byteIndex]);
@@ -272,7 +272,7 @@
cmdLine_DAPLINKserial.serial().printf(" 0x%2.2X", mosiData[byteIndex]);
}
// hex dump misoData[0..byteCount-1]
- cmdLine_DAPLINKserial.serial().printf(" MISO<-");
+ cmdLine_DAPLINKserial.serial().printf(" MISO<-");
for (unsigned int byteIndex = 0; byteIndex < numBytesTransferred; byteIndex++)
{
cmdLine_DAPLINKserial.serial().printf(" 0x%2.2X", misoData[byteIndex]);
MAX5171BOB