esp32-nmea2000-obp60/lib
norbert-walter 79b0e9ab9e Backup, delete sunset/sunsrise 2022-04-04 15:53:08 +02:00
..
aisparser NMEA0183 AIS to N2K, corrected some encodings 2021-11-02 19:29:40 +01:00
api introduce a source field in GwApi::BoatValue 2022-03-12 20:31:54 +01:00
appinfo move version and firmwaretype to appinfo 2021-12-17 13:01:03 +01:00
boatData correct static boat data names 2022-03-01 18:16:54 +01:00
buttons add led handling for m5atom 2021-11-06 16:02:30 +01:00
channel make the serial input/outout working again, show it's counters correctly 2022-01-24 14:51:53 +01:00
config correct factory reset handling after optimization 2022-03-11 15:39:29 +01:00
converterlist free GwApi from ArduinoJson 2021-11-28 12:11:47 +01:00
counter add status to Api 2022-01-03 18:59:17 +01:00
exampletask adapted readme to release 20220302 2022-03-02 11:32:35 +01:00
hardware add XDR min interval, N2K min interval, add N2K_LOAD_LEVEL and N2K_CERTIFICATION_LEVEL 2021-12-03 11:47:05 +01:00
json free GwApi from ArduinoJson 2021-11-28 12:11:47 +01:00
led improve logging MT robustness 2021-11-13 18:15:50 +01:00
log allow to set the log level 2022-01-09 18:09:34 +01:00
nmea2kto0183 add support for pgn 127257 2022-04-03 16:16:46 +02:00
nmea2ktoais remove compile warnings 2021-10-30 20:05:20 +02:00
nmea0183ton2k add support for pgn 127257 2022-04-03 16:16:46 +02:00
nmea2000esp32 add lib info for nmea2000esp32 2022-03-17 20:11:06 +01:00
obp60task Backup, delete sunset/sunsrise 2022-04-04 15:53:08 +02:00
queue optimize memory usage for config data, allow 4s timeout for setConfig 2022-03-11 14:50:48 +01:00
serial intermediate: introduce an abstract channel 2021-12-31 18:38:11 +01:00
socketserver add keepalive to socket connections 2022-01-12 18:30:41 +01:00
statistics optimize boat data string handling 2021-12-12 11:47:56 +01:00
update intermediate: OTA update 2021-12-14 18:01:38 +01:00
usercode #19: add help tab, allow to set the help URL with the HELP_URL capability 2022-03-02 11:32:10 +01:00
webserver optimize memory usage for config data, allow 4s timeout for setConfig 2022-03-11 14:50:48 +01:00
wifi #34: do not show apPassword in the config UI if the change is not allowed. Also do not print this on startup. Introduce FORCE_AP_PWCHANGE to allow extensions to force pw change ability 2022-03-10 19:26:19 +01:00
xdrmappings add support for pgn 127257 2022-04-03 16:16:46 +02:00
README intermediate: config handler implementation 2021-10-16 20:18:03 +02:00

README

This directory is intended for project specific (private) libraries.
PlatformIO will compile them to static libraries and link into executable file.

The source code of each library should be placed in a an own separate directory
("lib/your_library_name/[here are source files]").

For example, see a structure of the following two libraries `Foo` and `Bar`:

|--lib
|  |
|  |--Bar
|  |  |--docs
|  |  |--examples
|  |  |--src
|  |     |- Bar.c
|  |     |- Bar.h
|  |  |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html
|  |
|  |--Foo
|  |  |- Foo.c
|  |  |- Foo.h
|  |
|  |- README --> THIS FILE
|
|- platformio.ini
|--src
   |- main.c

and a contents of `src/main.c`:
```
#include <Foo.h>
#include <Bar.h>

int main (void)
{
  ...
}

```

PlatformIO Library Dependency Finder will find automatically dependent
libraries scanning project source files.

More information about PlatformIO Library Dependency Finder
- https://docs.platformio.org/page/librarymanager/ldf.html