FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ESPAsyncWebServer/src/AsyncWebServerVersion.h at main · ESP32Async/ESPAsyncWebServer · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ESP32Async
/
ESPAsyncWebServer
Public
forked from
me-no-dev/ESPAsyncWebServer
Notifications
You must be signed in to change notification settings
Fork
108
Star
648
Code
Issues
0
Pull requests
1
Discussions
Actions
Projects
Security and quality
3
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ESPAsyncWebServer
/
src
/
AsyncWebServerVersion.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (33 loc) · 1.23 KB
Breadcrumbs
ESPAsyncWebServer
/
src
/
AsyncWebServerVersion.h
Copy path
File metadata and controls
40 lines (33 loc) · 1.23 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright 2016-2026 Hristo Gochkov, Mathieu Carbou, Emil Muratov, Will Miles
#pragma
once
#ifdef
__cplusplus
extern
"C"
{
#endif
/** Major version number (X.x.x) */
#define
ASYNCWEBSERVER_VERSION_MAJOR
3
/** Minor version number (x.X.x) */
#define
ASYNCWEBSERVER_VERSION_MINOR
12
/** Patch version number (x.x.X) */
#define
ASYNCWEBSERVER_VERSION_PATCH
0
/**
* Macro to convert version number into an integer
*
* To be used in comparisons, such as ASYNCWEBSERVER_VERSION >= ASYNCWEBSERVER_VERSION_VAL(2, 0, 0)
*/
#define
ASYNCWEBSERVER_VERSION_VAL
(
major
,
minor
,
patch
) ((major << 16) | (minor << 8) | (patch))
/**
* Current version, as an integer
*
* To be used in comparisons, such as ASYNCWEBSERVER_VERSION_NUM >= ASYNCWEBSERVER_VERSION_VAL(2, 0, 0)
*/
#define
ASYNCWEBSERVER_VERSION_NUM
ASYNCWEBSERVER_VERSION_VAL(ASYNCWEBSERVER_VERSION_MAJOR, ASYNCWEBSERVER_VERSION_MINOR, ASYNCWEBSERVER_VERSION_PATCH)
/**
* Current version, as string
*/
#define
df2xstr
(
s
) #s
#define
df2str
(
s
) df2xstr(s)
#define
ASYNCWEBSERVER_VERSION
df2str(ASYNCWEBSERVER_VERSION_MAJOR) "." df2str(ASYNCWEBSERVER_VERSION_MINOR) "." df2str(ASYNCWEBSERVER_VERSION_PATCH)
#ifdef
__cplusplus
}
#endif
Back
|
FazBrowse Home
|
New Git URL