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: MaximTinyTester MAX11410 CmdLine USBDevice
Diff: Test_Menu_MAX11410.cpp
- Revision:
- 41:6f7c8adf9baf
- Parent:
- 39:c1b4b3b85c28
- Child:
- 42:236e108d8a88
--- a/Test_Menu_MAX11410.cpp Sat Dec 21 00:05:32 2019 +0000 +++ b/Test_Menu_MAX11410.cpp Sat Dec 21 01:34:06 2019 +0000 @@ -668,7 +668,7 @@ { cmdLine.serial().printf(" regAddress=0x%2.2X\r\n", (regAddress & 0xFF)); cmdLine.serial().printf(" RegName=%s\r\n", g_MAX11410_device.RegName((MAX11410::MAX11410_CMD_enum_t)regAddress)); - // accept regName ’?’ as ‘RegRead‘ by name + // accept regName "?" as "RegRead" by name is_regname_query = (cmdLine.chSeparator == '?'); is_regname_assignment = (cmdLine.chSeparator == '='); if (is_regname_query) @@ -677,7 +677,7 @@ g_MAX11410_device.RegRead((MAX11410::MAX11410_CMD_enum_t)regAddress, ®Data); cmdLine.serial().printf("regData=0x%6.6x\r\n", (regData & 0x00FFFFFF)); } - // accept regName ’=0x123456’ as ‘RegWrite’ by name + // accept regName "=0x123456" as "RegWrite" by name if (is_regname_assignment) { cmdLine.serial().printf(" RegWrite");