Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
citadel/updater/ | 22-Nov-2023 | - | 1,662 | 1,375 | ||
libnos/ | 23-Nov-2023 | - | 1,266 | 812 | ||
libnos_datagram/ | 22-Nov-2023 | - | 309 | 204 | ||
libnos_transport/ | 23-Nov-2023 | - | 1,597 | 1,154 | ||
nugget/ | 22-Nov-2023 | - | 4,124 | 2,980 | ||
.checkpatch.conf | D | 23-Nov-2023 | 165 | 8 | 4 | |
.clang-format | D | 23-Nov-2023 | 37 | 3 | 2 | |
.git | D | 01-Jan-1970 | 0 | |||
Android.bp | D | 23-Nov-2023 | 2.5 KiB | 85 | 77 | |
BUILD | D | 23-Nov-2023 | 470 | 16 | 15 | |
LICENSE | D | 22-Nov-2023 | 9.9 KiB | 178 | 150 | |
METADATA | D | 22-Nov-2023 | 435 | 18 | 16 | |
MODULE_LICENSE_APACHE2 | D | 22-Nov-2023 | 0 | |||
NOTICE | D | 22-Nov-2023 | 9.9 KiB | 178 | 150 | |
OWNERS | D | 23-Nov-2023 | 258 | 8 | 7 | |
README.md | D | 22-Nov-2023 | 959 | 31 | 20 | |
WORKSPACE | D | 22-Nov-2023 | 40 | 2 | 1 |
README.md
1# Generic host components for Nugget 2 3Nugget will be used in different contexts and with different hosts. This repo 4contains the components that can be shared between those hosts. 5 6## `nugget` 7 8The `nugget` directory contains items that are shared between the host and the 9firmware. Those include: 10 11 * shared headers 12 * service protos 13 14## `libnos` 15 16`libnos` is a C++ library for communication with a Nugget device. It offers an 17interface to manage a connection and exchange data and a generator for RPC stubs 18based on service protos. 19 20## `libnos_datagram` 21 22`libnos_datagram` is a C library for exchanging datagrams with a Nugget device. 23This directory only contains the API of the library as the different platforms 24will need to implement it differently. 25 26## `libnos_transport` 27 28`libnos_transport` is a C library for communicating with a Nugget device via the 29transport API. This is built on top of the `libnos_datagram` library for 30exchanging datagrams. 31