esp32-nmea2000-obp60/lib
norbert-walter 0d6b398e6d changes 2022-01-30 17:09:08 +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 Change back to old status 2022-01-09 16:17:31 +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 allow to hide config items from the ui and allow to change config values in the init function 2022-01-14 23:16:43 +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 allow to hide config items from the ui and allow to change config values in the init function 2022-01-14 23:16:43 +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 add changes from Homberger for AIS compatibility with raymarine 2022-01-14 21:07:54 +01:00
obp60task changes 2022-01-30 17:09:08 +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 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 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