mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 01:10:22 +03:00
maxsonarez: throw exception(s) on fatal errors
Signed-off-by: Jon Trulson <jtrulson@ics.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
parent
ab20e34c59
commit
aeb120c284
@ -33,7 +33,8 @@ MAXSONAREZ::MAXSONAREZ(int pin, float aref)
|
|||||||
{
|
{
|
||||||
if (!(m_aio = mraa_aio_init(pin)))
|
if (!(m_aio = mraa_aio_init(pin)))
|
||||||
{
|
{
|
||||||
cerr << __FUNCTION__ << "mraa_aio_init() failed." << endl;
|
throw std::invalid_argument(std::string(__FUNCTION__) +
|
||||||
|
": mraa_aio_init() failed, invalid pin?");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user