esp32-nmea2000-obp60/lib
andreas 84aed8bc89 introduce a source field in GwApi::BoatValue 2022-03-12 20:31:54 +01: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 fix a crash in ParseN2kGNSS, initialize double values for all n2k to 0183 conversions 2022-03-09 19:57:21 +01:00
nmea2ktoais remove compile warnings 2021-10-30 20:05:20 +02:00
nmea0183ton2k #33: accept lowercase checksum characters (intermediate until library is fixed) 2022-03-09 19:27:26 +01: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 correct backward xdr mapping for unknown instance, prefer instance mode single for unmapped, improve traces 2021-12-03 22:51:31 +01: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