knx/examples/knx-linux/main.cpp

157 lines
3.5 KiB
C++
Raw Normal View History

2019-05-18 21:04:49 +02:00
#include "knx_facade.h"
2019-10-28 18:26:24 +01:00
#include "knx/bau57B0.h"
2019-10-27 14:10:05 +01:00
#include "knx/bau27B0.h"
#include "knx/bau07B0.h"
2019-05-15 21:25:04 +02:00
#include "knx/group_object_table_object.h"
#include "knx/bits.h"
2019-05-15 21:25:04 +02:00
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
2019-10-28 20:42:51 +01:00
#include <string.h>
#include <signal.h>
2019-10-28 20:42:51 +01:00
#include <sched.h>
#include <sys/mman.h>
volatile sig_atomic_t loopActive = 1;
void signalHandler(int sig)
{
(void)sig;
// can be called asynchronously
loopActive = 0;
}
2019-05-15 21:25:04 +02:00
bool sendHidReport(uint8_t* data, uint16_t length)
{
return false;
}
bool isSendHidReportPossible()
{
return false;
}
2019-10-28 18:26:24 +01:00
#if MEDIUM_TYPE == 5
KnxFacade<LinuxPlatform, Bau57B0> knx;
#elif MEDIUM_TYPE == 2
2019-10-27 14:10:05 +01:00
KnxFacade<LinuxPlatform, Bau27B0> knx;
2019-10-28 18:26:24 +01:00
#else
#error Only MEDIUM_TYPE IP and RF supported
#endif
2019-05-15 21:25:04 +02:00
long lastsend = 0;
2019-08-22 22:57:35 +02:00
#define CURR knx.getGroupObject(1)
#define MAX knx.getGroupObject(2)
#define MIN knx.getGroupObject(3)
#define RESET knx.getGroupObject(4)
2019-05-15 21:25:04 +02:00
void measureTemp()
{
2019-08-22 21:31:02 +02:00
long now = millis();
if ((now - lastsend) < 10000)
2019-05-15 21:25:04 +02:00
return;
lastsend = now;
int r = rand();
double currentValue = (r * 1.0) / (RAND_MAX * 1.0);
2019-07-15 21:32:00 +02:00
currentValue *= 100;
currentValue -= 50;
// currentValue *= (670433.28 + 273);
// currentValue -= 273;
println(currentValue);
CURR.value(currentValue);
2019-05-15 21:25:04 +02:00
double max = MAX.value();
if (currentValue > max)
MAX.value(currentValue);
2019-05-15 21:25:04 +02:00
if (currentValue < (double)MIN.value())
MIN.value(currentValue);
2019-05-15 21:25:04 +02:00
}
void resetCallback(GroupObject& go)
{
if (go.value())
2019-05-15 21:25:04 +02:00
{
MAX.valueNoSend(-273.0);
MIN.valueNoSend(670433.28);
2019-05-15 21:25:04 +02:00
}
}
void appLoop()
{
2019-08-22 22:57:35 +02:00
if (!knx.configured())
2019-05-15 21:25:04 +02:00
return;
measureTemp();
}
void setup()
{
srand((unsigned int)time(NULL));
2019-08-22 22:57:35 +02:00
knx.readMemory();
2019-05-15 21:25:04 +02:00
2019-08-22 22:57:35 +02:00
if (knx.induvidualAddress() == 0)
knx.progMode(true);
2019-05-15 21:25:04 +02:00
2019-08-22 22:57:35 +02:00
if (knx.configured())
2019-05-15 21:25:04 +02:00
{
CURR.dataPointType(Dpt(9, 1));
MIN.dataPointType(Dpt(9, 1));
MIN.value(670433.28);
MAX.dataPointType(Dpt(9, 1));
MAX.valueNoSend(-273.0);
RESET.dataPointType(Dpt(1, 15));
2019-05-18 21:04:49 +02:00
RESET.callback(resetCallback);
2019-08-22 22:57:35 +02:00
printf("Timeout: %d\n", knx.paramWord(0));
printf("Zykl. senden: %d\n", knx.paramByte(2));
printf("Min/Max senden: %d\n", knx.paramByte(3));
printf("Aenderung senden: %d\n", knx.paramByte(4));
printf("Abgleich %d\n", knx.paramByte(5));
2019-05-15 21:25:04 +02:00
}
2019-12-09 23:19:13 +01:00
else
println("not configured");
2019-08-22 22:57:35 +02:00
knx.start();
2019-05-15 21:25:04 +02:00
}
int main(int argc, char **argv)
{
printf("main() start.\n");
2019-10-28 20:42:51 +01:00
// Prevent swapping of this process
struct sched_param sp;
memset(&sp, 0, sizeof(sp));
sp.sched_priority = sched_get_priority_max(SCHED_FIFO);
sched_setscheduler(0, SCHED_FIFO, &sp);
mlockall(MCL_CURRENT | MCL_FUTURE);
// Register signals
signal(SIGINT, signalHandler);
signal(SIGTERM, signalHandler);
2019-08-22 22:57:35 +02:00
knx.platform().cmdLineArgs(argc, argv);
2019-05-15 21:25:04 +02:00
setup();
while (loopActive)
2019-05-15 21:25:04 +02:00
{
2019-08-22 22:57:35 +02:00
knx.loop();
if(knx.configured())
2019-05-18 21:04:49 +02:00
appLoop();
2019-10-28 18:26:24 +01:00
delayMicroseconds(100);
2019-05-15 21:25:04 +02:00
}
// pinMode() will automatically export GPIO pin in sysfs
// Read or writing the GPIO pin for the first time automatically
// opens the "value" sysfs file to read or write the GPIO pin value.
// The following calls will close the "value" sysfs fiel for the pin
// and unexport the GPIO pin.
#ifdef USE_RF
gpio_unexport(SPI_SS_PIN);
gpio_unexport(GPIO_GDO2_PIN);
gpio_unexport(GPIO_GDO0_PIN);
#endif
printf("main() exit.\n");
2019-10-28 18:26:24 +01:00
}