• Home
Name Date Size #Lines LOC

..--

libnos/04-Jul-2025-1,6131,005

libnos_datagram/04-Jul-2025-622500

libnos_transport/04-Jul-2025-1,6431,193

nugget/04-Jul-2025-7,6565,661

.checkpatch.confD04-Jul-2025210 106

.clang-formatD04-Jul-202537 32

Android.bpD04-Jul-20255.8 KiB226208

BUILDD04-Jul-2025868 3230

LICENSED04-Jul-20259.9 KiB178150

METADATAD04-Jul-2025435 1816

MODULE_LICENSE_APACHE2D04-Jul-20250

OWNERSD04-Jul-2025340 98

README.mdD04-Jul-2025959 3120

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