Test program running on MAX32625MBED. Control through USB Serial commands using a terminal emulator such as teraterm or putty.

Dependencies:   MaximTinyTester CmdLine MAX5171 USBDevice

Revision:
1:40369075c365
Parent:
0:3edb3708c8c5
Child:
2:b3a8a0ca0a94
--- a/main.cpp	Mon Jun 10 07:53:42 2019 +0000
+++ b/main.cpp	Mon Jun 10 07:59:34 2019 +0000
@@ -3939,6 +3939,8 @@
     // TODO: tinyTester.FunctionCall_Expect replaces SelfTest_DACCodeOfVoltage_Expect
 #if USE_MAXIMTINYTESTER
     //
+    // Note: ide.mbed.com does not support C++11 Lambda Expressions
+    // -- see https://os.mbed.com/questions/82580/Is-there-solution-for-defining-of-interr/
     // define function under test using C++11 lambda expression [](){}
     // uint8_t MAX5715::Init(void)
     uint8_t (*fn_MAX5715_Init)() = [](){ return g_MAX5715_device.Init(); };
@@ -4819,6 +4821,8 @@
 #if USE_MAXIMTINYTESTER
     // TODO: tinyTester.FunctionCall_Expect replaces SelfTest_DACCodeOfVoltage_Expect
     //
+    // Note: ide.mbed.com does not support C++11 Lambda Expressions
+    // -- see https://os.mbed.com/questions/82580/Is-there-solution-for-defining-of-interr/
     // define function under test using C++11 lambda expression [](){}
     // uint8_t MAX5171::Init(void)
     uint8_t (*fn_MAX5171_Init)() = [](){ return g_MAX5171_device.Init(); };