130 lines
3.5 KiB
C
130 lines
3.5 KiB
C
/**************************************************************************
|
|
*
|
|
* Copyright (C) 2005 Steve Karg <skarg@users.sourceforge.net>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*********************************************************************/
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include "config.h"
|
|
#include "bacdef.h"
|
|
#include "bacdcode.h"
|
|
#include "npdu.h"
|
|
#include "apdu.h"
|
|
#include "device.h"
|
|
#include "ai.h"
|
|
#include "rp.h"
|
|
#include "wp.h"
|
|
#include "iam.h"
|
|
#include "whois.h"
|
|
#include "reject.h"
|
|
#include "abort.h"
|
|
#include "bacerror.h"
|
|
#include "ethernet.h"
|
|
#include "handlers.h"
|
|
|
|
// buffers used for receiving
|
|
static uint8_t Rx_Buf[MAX_MPDU] = {0};
|
|
|
|
static void Init_Device_Parameters(void)
|
|
{
|
|
// configure my initial values
|
|
Device_Set_Object_Instance_Number(111);
|
|
Device_Set_Vendor_Name("Lithonia Lighting");
|
|
Device_Set_Vendor_Identifier(42);
|
|
Device_Set_Model_Name("Simple BACnet Server");
|
|
Device_Set_Firmware_Revision("1.00");
|
|
Device_Set_Application_Software_Version("none");
|
|
Device_Set_Description("Example of a simple BACnet server");
|
|
|
|
return;
|
|
}
|
|
|
|
static void Init_Service_Handlers(void)
|
|
{
|
|
// we need to handle who-is to support dynamic device binding
|
|
apdu_set_unconfirmed_handler(
|
|
SERVICE_UNCONFIRMED_WHO_IS,
|
|
WhoIsHandler);
|
|
apdu_set_unconfirmed_handler(
|
|
SERVICE_UNCONFIRMED_I_AM,
|
|
IAmHandler);
|
|
|
|
// set the handler for all the services we don't implement
|
|
// It is required to send the proper reject message...
|
|
apdu_set_unrecognized_service_handler_handler(
|
|
UnrecognizedServiceHandler);
|
|
// we must implement read property - it's required!
|
|
apdu_set_confirmed_handler(
|
|
SERVICE_CONFIRMED_READ_PROPERTY,
|
|
ReadPropertyHandler);
|
|
apdu_set_confirmed_handler(
|
|
SERVICE_CONFIRMED_WRITE_PROPERTY,
|
|
WritePropertyHandler);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
BACNET_ADDRESS src = {0}; // address where message came from
|
|
uint16_t pdu_len = 0;
|
|
unsigned timeout = 100; // milliseconds
|
|
|
|
Init_Device_Parameters();
|
|
Init_Service_Handlers();
|
|
// init the physical layer
|
|
if (!ethernet_init("eth0"))
|
|
return 1;
|
|
|
|
// loop forever
|
|
for (;;)
|
|
{
|
|
// input
|
|
|
|
// returns 0 bytes on timeout
|
|
pdu_len = ethernet_receive(
|
|
&src,
|
|
&Rx_Buf[0],
|
|
MAX_MPDU,
|
|
timeout);
|
|
|
|
// process
|
|
if (pdu_len)
|
|
{
|
|
npdu_handler(
|
|
&src,
|
|
&Rx_Buf[0],
|
|
pdu_len);
|
|
}
|
|
if (I_Am_Request)
|
|
{
|
|
I_Am_Request = false;
|
|
Send_IAm();
|
|
}
|
|
// output
|
|
|
|
// blink LEDs, Turn on or off outputs, etc
|
|
}
|
|
|
|
return 0;
|
|
}
|