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 MAX11131 CmdLine MAX541 USBDevice
Diff: main.cpp
- 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(); };