source: trunk/firmware_v3/SES/src/sysdata.c@ 41

Last change on this file since 41 was 41, checked in by f.jahn, 8 days ago

V3 Version soweit fertig. Relais ansteuerung, modbus, temperatursensor ist implementiert
Commit vor Änderung auf neuen Controller mit mehr Speicher

File size: 448 bytes
RevLine 
[41]1/*!
2 * \file : sysdata.c
3 * \brief : Contains definition of SYS_DATA structure.
4 *
5 */
6
7#include "sysdata.h"
8#include "modbus.h"
9
10sys_data_t sys_data;
11
12void SYS_DATA_Init(void)
13{
14 // Gertetyp angeben
15
16 sys_data.s.parameter.device_type = 600;
17
18 sys_data.s.parameter.fw_revision_major = 1;
19 sys_data.s.parameter.fw_revision_minor = 0;
20 sys_data.s.parameter.fw_revision_revision = 0;
21
22
23
24
25
26
27
28}
Note: See TracBrowser for help on using the repository browser.