esp32-nmea2000-obp60/lib
Andreas Vogel d1032bc231
Merge pull request #55 from free-x/twai
[WIP] Update NMEA Libraries
2023-10-13 19:39:05 +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 revert back for chip id in app info 2023-09-09 17:11:32 +02:00
boatData move to newest framework 6.3.2 2023-08-24 15:22:02 +02:00
buttons 1st step to post request for config 2022-11-15 22:44:48 +01:00
channel move serial channel mode to serial channel type (integer) 2023-08-31 22:03:23 +02:00
config allow to set a read only mode for config items, output compiler messages for overwritten configs, add m5 gps unit defs 2023-10-05 18:52:30 +02: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 #48: add a second serial config to the example task 2023-08-31 12:32:48 +02:00
hardware add more predefined configs 2023-10-13 19:10:11 +02:00
json free GwApi from ArduinoJson 2021-11-28 12:11:47 +01:00
led add reset button, led to node mcu 2023-10-11 17:51:05 +02:00
log cleanup unused code, make fallback_serial working again 2023-08-30 20:20:28 +02:00
nmea2kto0183 bump nmea2000 library 2023-08-30 11:08:49 +02:00
nmea2ktoais #57: make the conversion of AIS ship dimensions more robust 2023-09-29 19:54:03 +02:00
nmea2ktwai better handling if no CAN Pins are configured 2023-08-31 19:12:10 +02:00
nmea0183ton2k bump nmea2000 library 2023-08-30 11:08:49 +02:00
queue optimize memory usage for config data, allow 4s timeout for setConfig 2022-03-11 14:50:48 +01:00
serial using the externals for USBSerial and Serial1 2023-08-30 19:55:26 +02:00
socketserver move to newest framework 6.3.2 2023-08-24 15:22:02 +02:00
statistics optimize boat data string handling 2021-12-12 11:47:56 +01:00
timer add timer class for periodic runs 2023-08-26 10:53:46 +02: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 move to newest framework 6.3.2 2023-08-24 15:22:02 +02: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