author | Edouard Tisserant |
Fri, 22 Jan 2021 11:30:37 +0100 | |
branch | svghmi |
changeset 3116 | 6da94ec04325 |
parent 2504 | f3aced6c5f8b |
child 3294 | e3db472b0dfb |
permissions | -rw-r--r-- |
2504
f3aced6c5f8b
fix problems with recursive beremiz.h inclusion
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2503
diff
changeset
|
1 |
#ifndef _BEREMIZ_H_ |
f3aced6c5f8b
fix problems with recursive beremiz.h inclusion
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2503
diff
changeset
|
2 |
#define _BEREMIZ_H_ |
f3aced6c5f8b
fix problems with recursive beremiz.h inclusion
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2503
diff
changeset
|
3 |
|
1001 | 4 |
/* Beremiz' header file for use by extensions */ |
5 |
||
6 |
#include "iec_types.h" |
|
7 |
||
8 |
#define LOG_LEVELS 4 |
|
9 |
#define LOG_CRITICAL 0 |
|
10 |
#define LOG_WARNING 1 |
|
11 |
#define LOG_INFO 2 |
|
12 |
#define LOG_DEBUG 3 |
|
13 |
||
14 |
extern unsigned long long common_ticktime__; |
|
2175
667f7de69cf6
Fix compilation problem in case of TARGET_LOGGING_DISABLE turned on and TARGET_DEBUG_DISABLE turned off
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1050
diff
changeset
|
15 |
|
667f7de69cf6
Fix compilation problem in case of TARGET_LOGGING_DISABLE turned on and TARGET_DEBUG_DISABLE turned off
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1050
diff
changeset
|
16 |
#ifdef TARGET_LOGGING_DISABLE |
2503
6ffeffb6d635
remove LogMessage prototype from plc_main_head.c
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2175
diff
changeset
|
17 |
static inline int LogMessage(uint8_t level, char* buf, uint32_t size) |
6ffeffb6d635
remove LogMessage prototype from plc_main_head.c
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2175
diff
changeset
|
18 |
{ |
6ffeffb6d635
remove LogMessage prototype from plc_main_head.c
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2175
diff
changeset
|
19 |
(void)level; |
6ffeffb6d635
remove LogMessage prototype from plc_main_head.c
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2175
diff
changeset
|
20 |
(void)buf; |
6ffeffb6d635
remove LogMessage prototype from plc_main_head.c
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2175
diff
changeset
|
21 |
(void)size; |
6ffeffb6d635
remove LogMessage prototype from plc_main_head.c
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2175
diff
changeset
|
22 |
return 0; |
6ffeffb6d635
remove LogMessage prototype from plc_main_head.c
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2175
diff
changeset
|
23 |
} |
2175
667f7de69cf6
Fix compilation problem in case of TARGET_LOGGING_DISABLE turned on and TARGET_DEBUG_DISABLE turned off
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1050
diff
changeset
|
24 |
#else |
667f7de69cf6
Fix compilation problem in case of TARGET_LOGGING_DISABLE turned on and TARGET_DEBUG_DISABLE turned off
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1050
diff
changeset
|
25 |
int LogMessage(uint8_t level, char* buf, uint32_t size); |
667f7de69cf6
Fix compilation problem in case of TARGET_LOGGING_DISABLE turned on and TARGET_DEBUG_DISABLE turned off
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1050
diff
changeset
|
26 |
#endif |
667f7de69cf6
Fix compilation problem in case of TARGET_LOGGING_DISABLE turned on and TARGET_DEBUG_DISABLE turned off
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1050
diff
changeset
|
27 |
|
1050
56bef276055e
Made declaration from beremiz.h available to C pragmas in POUs. Added AtomicCompareExchange to beremiz.h
Edouard Tisserant
parents:
1002
diff
changeset
|
28 |
long AtomicCompareExchange(long* atomicvar,long compared, long exchange); |
1001 | 29 |
|
2504
f3aced6c5f8b
fix problems with recursive beremiz.h inclusion
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2503
diff
changeset
|
30 |
#endif |