esp32-nmea2000-obp60/lib
andreas 435654a3f6 correctly map pressure from bar to pascal in xdr 2023-03-17 20:54:00 +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 #44: implement workaround factor for ROT 2022-11-16 11:46:14 +01:00
buttons 1st step to post request for config 2022-11-15 22:44:48 +01:00
channel make the serial input/outout working again, show it's counters correctly 2022-01-24 14:51:53 +01:00
config correctly handle pass and sizes 2022-11-15 23:33:49 +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 rs485 atom board 2022-06-25 08:29:49 +02: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 correctly handle pass and sizes 2022-11-15 23:33:49 +01:00
nmea2kto0183 #44: implement workaround factor for ROT 2022-11-16 11:46:14 +01:00
nmea2ktoais remove compile warnings 2021-10-30 20:05:20 +02:00
nmea0183ton2k #49: parse MTW and convert to 130310 2023-03-08 16:18:53 +01:00
nmea2000esp32 add lib info for nmea2000esp32 2022-03-17 20:11:06 +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 1st step to post request for config 2022-11-15 22:44: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 correctly map pressure from bar to pascal in xdr 2023-03-17 20:54:00 +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