esp32-nmea2000-obp60/lib
norbert-walter bf6b2dd922 Add DS18B20 1wire bus detection 2024-04-21 22:48:40 +02:00
..
aisparser NMEA0183 AIS to N2K, corrected some encodings 2021-11-02 19:29:40 +01:00
api add calset input 2024-03-17 18:20:09 +01:00
appinfo revert back for chip id in app info 2023-09-09 17:11:32 +02:00
boatData allow to convert 2 rudder instances 2024-03-02 19:59:00 +01:00
buttontask avoid the need for additional includes for task interfaces 2023-10-28 11:04:40 +02:00
channel remove old not compiling code for serial defines 2024-03-23 20:29:55 +01:00
config intermediate: multiple groves 2024-03-19 20:54:32 +01:00
converterlist free GwApi from ArduinoJson 2021-11-28 12:11:47 +01:00
counter allow a counter for user tasks, reorganize generated config handling 2023-10-14 19:20:21 +02:00
exampletask doc for 20231105 2023-11-05 21:31:24 +01:00
gwupdate intermediate: move to ldf none mode 2023-10-27 12:26:10 +02:00
gwwebserver add calset input 2024-03-17 18:20:09 +01:00
gwwifi intermediate: move to ldf none mode 2023-10-27 12:26:10 +02:00
hardware allow more I2C devices at grove ports 2024-03-21 18:13:37 +01:00
iictask #63: increase iic task stack size to 4000 2024-03-22 18:02:47 +01:00
json free GwApi from ArduinoJson 2021-11-28 12:11:47 +01:00
ledtask avoid the need for additional includes for task interfaces 2023-10-28 11:04:40 +02:00
log allow to change the Wifi AP Ip address and mask 2023-10-20 20:40:44 +02:00
nmea2kto0183 allow to configure sendRMC 2024-03-03 18:37:38 +01: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 allow to configure sendRMC 2024-03-03 18:37:38 +01:00
obp60task Add DS18B20 1wire bus detection 2024-04-21 22:48:40 +02:00
queue optimize memory usage for config data, allow 4s timeout for setConfig 2022-03-11 14:50:48 +01:00
sensors correct handling for grove based iic sensors 2024-03-21 11:51:10 +01:00
serial allow to start m5 atom s3 without USB device connected 2024-03-23 20:21:21 +01:00
socketserver move to newest framework 6.3.2 2023-08-24 15:22:02 +02:00
spitask make spi devices working again 2024-03-21 17:42:30 +01: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
usercode add calset input 2024-03-17 18:20:09 +01:00
xdrmappings allow to set XDR mappings from user tasks 2023-10-24 18:20:01 +02: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