2010-04-02 18:18:27 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <glib.h>
|
2010-04-15 18:07:16 +00:00
|
|
|
#include <sigrok.h>
|
2011-02-20 12:27:08 +00:00
|
|
|
#include <sigrok-internal.h>
|
2010-04-02 18:18:27 +00:00
|
|
|
|
2011-01-29 15:43:45 +00:00
|
|
|
int sr_init(void)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2010-04-15 18:07:16 +00:00
|
|
|
return load_hwplugins();
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-15 14:43:25 +00:00
|
|
|
/* TODO: Should return int to be able to report back error codes. */
|
2011-01-30 18:22:13 +00:00
|
|
|
void sr_exit(void)
|
2010-04-02 18:18:27 +00:00
|
|
|
{
|
2011-02-08 17:19:38 +00:00
|
|
|
sr_device_close_all();
|
2010-04-02 18:18:27 +00:00
|
|
|
}
|