Build: Include <config.h> first in all source files

Since Autoconf places some important feature flags only into the
configuration header, it is necessary to include it globally to
guarantee a consistent build.
This commit is contained in:
Daniel Elstner 2015-09-13 18:22:17 +02:00
parent 4d6a50085e
commit 6ec6c43b47
182 changed files with 180 additions and 10 deletions

View File

@ -30,7 +30,7 @@ const ConfigKey *ConfigKey::get_by_identifier(string identifier)
return get(info->key); return get(info->key);
} }
#include "config.h" #include <config.h>
#ifndef HAVE_STOI_STOD #ifndef HAVE_STOI_STOD

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <libsigrokcxx/libsigrokcxx.hpp> #include <libsigrokcxx/libsigrokcxx.hpp>
#include <sstream> #include <sstream>

View File

@ -33,10 +33,6 @@ AM_INIT_AUTOMAKE([1.11 -Wall -Werror no-define nostdinc subdir-objects check-new
AM_SILENT_RULES([yes]) AM_SILENT_RULES([yes])
m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
AH_TOP([#ifndef SR_CONFIG_H
#define SR_CONFIG_H /* To stop multiple inclusions. */])
AH_BOTTOM([#endif /* SR_CONFIG_H */])
AC_CANONICAL_HOST AC_CANONICAL_HOST
# Checks for programs. # Checks for programs.

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdio.h> #include <stdio.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>

View File

@ -18,8 +18,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h" #include "libsigrok-internal.h"

View File

@ -17,9 +17,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdio.h> #include <stdio.h>
#include <glib.h> #include <glib.h>
#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h" #include "libsigrok-internal.h"

View File

@ -23,6 +23,7 @@
* Brymen BM25x serial protocol parser. * Brymen BM25x serial protocol parser.
*/ */
#include <config.h>
#include <math.h> #include <math.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h" #include "libsigrok-internal.h"

View File

@ -25,6 +25,7 @@
* Communication parameters: Unidirectional, 2400/7o1 or 19230/7o1 * Communication parameters: Unidirectional, 2400/7o1 or 19230/7o1
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>

View File

@ -31,6 +31,7 @@
* - The protocol seems to be exactly the same. * - The protocol seems to be exactly the same.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>

View File

@ -22,6 +22,7 @@
* Fortune Semiconductor FS9922-DMM3/FS9922-DMM4 protocol parser. * Fortune Semiconductor FS9922-DMM3/FS9922-DMM4 protocol parser.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>

View File

@ -25,6 +25,7 @@
* Most probably the simplest multimeter protocol ever ;-) . * Most probably the simplest multimeter protocol ever ;-) .
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>
#include <glib.h> #include <glib.h>

View File

@ -30,6 +30,7 @@
* It does _not_ work for all Metex DMMs, some use a quite different protocol. * It does _not_ work for all Metex DMMs, some use a quite different protocol.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <strings.h> #include <strings.h>
#include <ctype.h> #include <ctype.h>

View File

@ -28,6 +28,7 @@
* and protocol is used on any other device. * and protocol is used on any other device.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>

View File

@ -22,6 +22,7 @@
* UNI-T UT372 protocol parser. * UNI-T UT372 protocol parser.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>
#include <math.h> #include <math.h>

View File

@ -24,6 +24,7 @@
* Communication parameters: Unidirectional, 2400/7o1 * Communication parameters: Unidirectional, 2400/7o1
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h" #include "libsigrok-internal.h"

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
/** /**

View File

@ -21,6 +21,7 @@
* Helper functions for the Cypress EZ-USB / FX2 series chips. * Helper functions for the Cypress EZ-USB / FX2 series chips.
*/ */
#include <config.h>
#include <libusb.h> #include <libusb.h>
#include <glib.h> #include <glib.h>
#include <glib/gstdio.h> #include <glib/gstdio.h>

View File

@ -17,8 +17,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include "config.h"
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#ifndef HAVE_LIBSERIALPORT #ifndef HAVE_LIBSERIALPORT

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>
#include "protocol.h" #include "protocol.h"

View File

@ -23,6 +23,7 @@
* ASIX SIGMA/SIGMA2 logic analyzer driver * ASIX SIGMA/SIGMA2 logic analyzer driver
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <glib/gstdio.h> #include <glib/gstdio.h>
#include <ftdi.h> #include <ftdi.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#include <time.h> #include <time.h>
#include <sys/timerfd.h> #include <sys/timerfd.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <glib/gstdio.h> #include <glib/gstdio.h>
#include <unistd.h> #include <unistd.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#include "beaglelogic.h" #include "beaglelogic.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define BRYMEN_BC86X "0820.0001" #define BRYMEN_BC86X "0820.0001"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t scanopts[] = { static const uint32_t scanopts[] = {

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define MAX_PACKET_LEN 22 #define MAX_PACKET_LEN 22

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static void handle_packet(const uint8_t *buf, struct sr_dev_inst *sdi) static void handle_packet(const uint8_t *buf, struct sr_dev_inst *sdi)

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t scanopts[] = { static const uint32_t scanopts[] = {

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define NUM_CHANNELS 4 #define NUM_CHANNELS 4

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
SR_PRIV struct sr_dev_driver chronovu_la_driver_info; SR_PRIV struct sr_dev_driver chronovu_la_driver_info;

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
SR_PRIV const struct cv_profile cv_profiles[] = { SR_PRIV const struct cv_profile cv_profiles[] = {

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <glib.h> #include <glib.h>
#include <string.h> #include <string.h>

View File

@ -22,6 +22,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define SERIALCOMM "9600/8n1" #define SERIALCOMM "9600/8n1"

View File

@ -23,6 +23,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
/** /**

View File

@ -21,6 +21,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>

View File

@ -18,6 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#include "dslogic.h" #include "dslogic.h"

View File

@ -18,6 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>

View File

@ -18,6 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <glib/gstdio.h> #include <glib/gstdio.h>
#include "protocol.h" #include "protocol.h"

View File

@ -22,6 +22,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -22,6 +22,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include "scpi.h" #include "scpi.h"
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "scpi.h" #include "scpi.h"
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdio.h> #include <stdio.h>
#include <stdint.h> #include <stdint.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <glib.h> #include <glib.h>
#include <libusb.h> #include <libusb.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <ieee1284.h> #include <ieee1284.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <ieee1284.h> #include <ieee1284.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t devopts[] = { static const uint32_t devopts[] = {

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
extern struct sr_dev_driver ikalogic_scanalogic2_driver_info; extern struct sr_dev_driver ikalogic_scanalogic2_driver_info;

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define USB_VENDOR_ID 0x0403 #define USB_VENDOR_ID 0x0403

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
/* /*

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h" #include "libsigrok-internal.h"

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <libusb.h> #include <libusb.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/time.h> #include <sys/time.h>
#include <string.h> #include <string.h>

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t devopts[] = { static const uint32_t devopts[] = {

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
/* serial protocol */ /* serial protocol */

View File

@ -24,6 +24,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t drvopts[] = { static const uint32_t drvopts[] = {

View File

@ -24,6 +24,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define REQ_TIMEOUT_MS 500 #define REQ_TIMEOUT_MS 500

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t scanopts[] = { static const uint32_t scanopts[] = {

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
SR_PRIV int maynuo_m97_get_bit(struct sr_modbus_dev_inst *modbus, SR_PRIV int maynuo_m97_get_bit(struct sr_modbus_dev_inst *modbus,

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t scanopts[] = { static const uint32_t scanopts[] = {

View File

@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static int mic_send(struct sr_serial_dev_inst *serial, const char *cmd) static int mic_send(struct sr_serial_dev_inst *serial, const char *cmd)

View File

@ -23,6 +23,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>

View File

@ -23,6 +23,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

View File

@ -22,6 +22,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t scanopts[] = { static const uint32_t scanopts[] = {

View File

@ -22,6 +22,7 @@
* @internal * @internal
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define LINE_LENGTH 20 #define LINE_LENGTH 20

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
#define SERIALCOMM "115200/8n1" #define SERIALCOMM "115200/8n1"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
extern SR_PRIV struct sr_dev_driver ols_driver_info; extern SR_PRIV struct sr_dev_driver ols_driver_info;

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
static const uint32_t devopts[] = { static const uint32_t devopts[] = {

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include "protocol.h" #include "protocol.h"
extern SR_PRIV struct sr_dev_driver p_ols_driver_info; extern SR_PRIV struct sr_dev_driver p_ols_driver_info;

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdarg.h> #include <stdarg.h>
#include <unistd.h> #include <unistd.h>

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <libusb.h> #include <libusb.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <glib.h> #include <glib.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <strings.h> #include <strings.h>
#include "scpi.h" #include "scpi.h"

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <strings.h> #include <strings.h>
#include "protocol.h" #include "protocol.h"

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include <strings.h> #include <strings.h>
#include <stdarg.h> #include <stdarg.h>

View File

@ -19,6 +19,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>

View File

@ -18,6 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <stdlib.h> #include <stdlib.h>
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <glib.h> #include <glib.h>
#include <libusb.h> #include <libusb.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <errno.h> #include <errno.h>
#include <glib/gstdio.h> #include <glib/gstdio.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>

View File

@ -17,6 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <config.h>
#include <string.h> #include <string.h>
#include "protocol.h" #include "protocol.h"

Some files were not shown because too many files have changed in this diff Show More