SP8EBC-ParaTNC/include/etc/kiss_did_configuration.h

29 wiersze
929 B
C
Czysty Zwykły widok Historia

2023-06-27 20:49:35 +00:00
/*
* kiss_did_configuration.h
*
* Configuration of all DIDs with theirs data source. There are separate
* definitions for DIDs which return strings and numeric values
*
*
* DID subsystem consist of three files:
* kiss_xmacro_helpers.h - files with macros used for expanding config
* kiss_did_configuration.h - definitions which DID return what data
* kiss_did.c - implementation of arrays with content definition and
* function which are responsible for returning raw
* binary data basing on configuration
*
* Created on: Jun 21, 2023
* Author: mateusz
*/
#ifndef KISS_DID_CONFIGURATION_H_
#define KISS_DID_CONFIGURATION_H_
#include "./kiss_communication/kiss_xmacro_helpers.h"
#include "rte_wx.h"
#define DIDS_NUMERIC(ENTRY) \
ENTRY(0x1234, &rte_wx_temperature_average_dallas, &rte_wx_temperature_average_pt, &rte_wx_temperature_average_internal)
#endif /* KISS_DID_CONFIGURATION_H_ */