107 lines
2.5 KiB
C
107 lines
2.5 KiB
C
//------------------------------------------------------------------------------
|
|
// Copyright (C) 2011, Robert Johansson, Raditex AB
|
|
// All rights reserved.
|
|
//
|
|
// rSCADA
|
|
// http://www.rSCADA.se
|
|
// info@rscada.se
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
#include <mbus/mbus.h>
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Primary addressing scanning of mbus devices.
|
|
//------------------------------------------------------------------------------
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
mbus_handle *handle;
|
|
char *device;
|
|
int address, baudrate = 9600, debug = 0;
|
|
|
|
if (argc == 2)
|
|
{
|
|
device = argv[1];
|
|
}
|
|
else if (argc == 3 && strcmp(argv[1], "-d") == 0)
|
|
{
|
|
debug = 1;
|
|
device = argv[2];
|
|
}
|
|
else if (argc == 4 && strcmp(argv[1], "-b") == 0)
|
|
{
|
|
baudrate = atoi(argv[2]);
|
|
device = argv[3];
|
|
}
|
|
else if (argc == 5 && strcmp(argv[1], "-d") == 0 && strcmp(argv[2], "-b") == 0)
|
|
{
|
|
debug = 1;
|
|
baudrate = atoi(argv[3]);
|
|
device = argv[4];
|
|
}
|
|
else
|
|
{
|
|
fprintf(stderr, "usage: %s [-d] [-b BAUDRATE] device\n", argv[0]);
|
|
return 0;
|
|
}
|
|
|
|
if ((handle = mbus_connect_serial(device)) == NULL)
|
|
{
|
|
printf("Failed to setup connection to M-bus gateway\n");
|
|
return 1;
|
|
}
|
|
|
|
if (mbus_serial_set_baudrate(handle->m_serial_handle, baudrate) == -1)
|
|
{
|
|
printf("Failed to set baud rate.\n");
|
|
return 1;
|
|
}
|
|
|
|
if (debug)
|
|
printf("Scanning primary addresses:\n");
|
|
|
|
for (address = 0; address < 254; address++)
|
|
{
|
|
mbus_frame reply;
|
|
|
|
memset((void *)&reply, 0, sizeof(mbus_frame));
|
|
|
|
if (debug)
|
|
{
|
|
printf("%d ", address);
|
|
fflush(stdout);
|
|
}
|
|
|
|
if (mbus_send_ping_frame(handle, address) == -1)
|
|
{
|
|
printf("Scan failed. Could not send ping frame: %s\n", mbus_error_str());
|
|
return 1;
|
|
}
|
|
|
|
if (mbus_recv_frame(handle, &reply) == -1)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (mbus_frame_type(&reply) == MBUS_FRAME_TYPE_ACK)
|
|
{
|
|
if (debug)
|
|
printf("\n");
|
|
|
|
printf("Found a M-Bus device at address %d\n", address);
|
|
}
|
|
}
|
|
|
|
mbus_disconnect(handle);
|
|
return 0;
|
|
}
|
|
|