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 MonitoringExecutor MonitoringStrategy ObjectPosition SRF05 Configuration ManualController
configurationVerifier.cpp
00001 #include "configurationVerifier.h" 00002 00003 bool ConfigurationVerifier::verifyConfiguration(Serial* pc, Configuration* conf) 00004 { 00005 bool isConfigurationCorrect = true; 00006 00007 if (conf->getMode() != m_circleMode && conf->getMode() != m_squereMode) { 00008 pc->printf("Mode %d is not supported. By!\n\r", conf->getMode()); 00009 isConfigurationCorrect = false; 00010 } 00011 00012 return isConfigurationCorrect; 00013 }
Generated on Fri Jul 22 2022 17:55:42 by
1.7.2