esp32-nmea2000-obp60/lib
wellenvogel 7d93ecb063 allow to set the log level 2022-01-09 18:09:34 +01:00
..
aisparser NMEA0183 AIS to N2K, corrected some encodings 2021-11-02 19:29:40 +01:00
api add status to Api 2022-01-03 18:59:17 +01:00
appinfo move version and firmwaretype to appinfo 2021-12-17 13:01:03 +01:00
boatData correct formatWind 2022-01-08 21:43:52 +01:00
buttons add led handling for m5atom 2021-11-06 16:02:30 +01:00
channel disable log in actisense mode 2022-01-07 12:37:20 +01:00
config introduce channel config abstraction 2021-12-29 19:52:36 +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 add status to Api 2022-01-03 18:59:17 +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 allow receiving seasmart messages, correctly handle source for actisense and seasmart in converter 2022-01-03 18:05:14 +01:00
nmea2ktoais remove compile warnings 2021-10-30 20:05:20 +02:00
nmea0183ton2k intermediate, untested: move channel handling out of main 2022-01-02 14:43:37 +01:00
queue allow receiving seasmart messages, correctly handle source for actisense and seasmart in converter 2022-01-03 18:05:14 +01:00
serial intermediate: introduce an abstract channel 2021-12-31 18:38:11 +01:00
socketserver tcp client resolve mdns 2022-01-03 13:37:35 +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 add status to Api 2022-01-03 18:59:17 +01:00
webserver intermediate: prepare ota upload 2021-12-14 13:14:36 +01:00
wifi add status to Api 2022-01-03 18:59:17 +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