ESP32-PaxCounter/include
2019-03-24 01:05:13 +01:00
..
antenna.h Code Sanitization 2018-10-14 13:26:23 +02:00
battery.h Code Sanitization 2018-10-14 13:26:23 +02:00
beacon_array.h Code Sanitization 2018-10-14 13:26:23 +02:00
blescan.h fix bluetooth includes (issue #249) 2019-01-20 15:53:31 +01:00
bmesensor.h BME280 integration (PR #309) 2019-03-13 21:15:28 +01:00
button.h Code Sanitization 2018-10-14 13:26:23 +02:00
coexist_internal.h Undo merge 2019-01-19 19:54:54 +01:00
configmanager.h configmanager bitmask display 2019-03-17 22:00:02 +01:00
cyclic.h merge ifdef refactoring (pr #313) 2019-03-13 21:47:05 +01:00
dcf77.h DCF77 code sanitization 2019-02-23 20:28:11 +01:00
display.h timekeeper fixes (still experimental) 2019-02-27 00:52:27 +01:00
globals.h time accuracy improvement 2019-03-19 01:46:20 +01:00
gpsread.h get_gpstime optimization 2019-03-03 17:06:36 +01:00
hash.h Code Sanitization 2018-10-14 13:26:23 +02:00
if482.h interrupt timing issues (not fully solved yet) 2019-03-23 15:12:11 +01:00
irqhandler.h fix display after merge of pr #313 2019-03-13 22:08:05 +01:00
led.h secondary LED added 2019-03-24 01:05:13 +01:00
lorawan.h timeserver (experimental) 2019-03-09 00:53:11 +01:00
macsniff.h Undo merge 2019-01-19 19:54:54 +01:00
main.h replace #ifdef with #if to streamline feature setting 2019-03-11 18:09:01 +01:00
mallocator.h Undo merge 2019-01-19 19:54:54 +01:00
ota.h fix display after merge of pr #313 2019-03-13 22:08:05 +01:00
payload.h timeserver(experimental) 2019-03-10 17:35:57 +01:00
rcommand.h merge ifdef refactoring (pr #313) 2019-03-13 21:47:05 +01:00
readme.txt Code Sanitization 2018-10-14 13:26:23 +02:00
rtctime.h timekeeper code sanitizations 2019-02-24 13:47:18 +01:00
senddata.h replace #ifdef with #if to streamline feature setting 2019-03-11 18:09:01 +01:00
sensor.h sensor init 2018-11-20 16:48:35 +01:00
spislave.h added priority control for lora and spi sendqueue 2019-02-03 14:12:21 +01:00
timekeeper.h interrupt timing issues (not fully solved yet) 2019-03-23 15:12:11 +01:00
timesync.h timesync fixes 2019-03-24 00:15:04 +01:00
vendor_array.h Update vendor list (issue #150) 2019-03-11 10:16:33 +01:00
wifiscan.h free up hw timer #1 (for future DCF77 use) 2019-02-02 21:35:40 +01:00

This directory is intended for project header files.

A header file is a file containing C declarations and macro definitions
to be shared between several project source files. You request the use of a
header file in your project source file (C, C++, etc) located in `src` folder
by including it, with the C preprocessing directive `#include'.

```src/main.c

#include "header.h"

int main (void)
{
 ...
}
```

Including a header file produces the same results as copying the header file
into each source file that needs it. Such copying would be time-consuming
and error-prone. With a header file, the related declarations appear
in only one place. If they need to be changed, they can be changed in one
place, and programs that include the header file will automatically use the
new version when next recompiled. The header file eliminates the labor of
finding and changing all the copies as well as the risk that a failure to
find one copy will result in inconsistencies within a program.

In C, the usual convention is to give header files names that end with `.h'.
It is most portable to use only letters, digits, dashes, and underscores in
header file names, and at most one dot.

Read more about using header files in official GCC documentation:

* Include Syntax
* Include Operation
* Once-Only Headers
* Computed Includes

https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html