3a0878a254
Added a new API for writable property lists across all the basic example object types, preparing for the introduction of a Writable_Property_List property in every object in a future BACnet standard revision. The lists can be used by backup and restore feature to automatically choose the object property values in the backup that can be restored via internal WriteProperty directly from BACnet CreateObject services with List of Initial Values. Updated existing device object examples to include these writable property lists.
20 lines
446 B
Bash
Executable File
20 lines
446 B
Bash
Executable File
#!/bin/sh
|
|
# A script to download and build the libpifacedigital for PiFace
|
|
# The library is located at github.com/piface
|
|
# Since the PiFace library is GPLv3, we have to keep it separate.
|
|
|
|
if [ ! -d "libmcp23s17" ]
|
|
then
|
|
git clone https://github.com/piface/libmcp23s17.git
|
|
fi
|
|
|
|
if [ ! -d "libpifacedigital" ]
|
|
then
|
|
git clone https://github.com/piface/libpifacedigital.git
|
|
fi
|
|
|
|
# Build the library
|
|
|
|
make -C libmcp23s17
|
|
make -C libpifacedigital
|