Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions LICENSE

This file was deleted.

105 changes: 105 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Functional Source License, Version 1.1, ALv2 Future License

## Abbreviation

FSL-1.1-ALv2

## Notice

Copyright 2025 Embeint Holdings Pty Ltd

## Terms and Conditions

### Licensor ("We")

The party offering the Software under these Terms and Conditions.

### The Software

The "Software" is each version of the software that we make available under
these Terms and Conditions, as indicated by our inclusion of these Terms and
Conditions with the Software.

### License Grant

Subject to your compliance with this License Grant and the Patents,
Redistribution and Trademark clauses below, we hereby grant you the right to
use, copy, modify, create derivative works, publicly perform, publicly display
and redistribute the Software for any Permitted Purpose identified below.

### Permitted Purpose

A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
means making the Software available to others in a commercial product or
service that:

1. substitutes for the Software;

2. substitutes for any other product or service we offer using the Software
that exists as of the date we make the Software available; or

3. offers the same or substantially similar functionality as the Software.

Permitted Purposes specifically include using the Software:

1. for your internal use and access;

2. for non-commercial education;

3. for non-commercial research; and

4. in connection with professional services that you provide to a licensee
using the Software in accordance with these Terms and Conditions.

### Patents

To the extent your use for a Permitted Purpose would necessarily infringe our
patents, the license grant above includes a license under our patents. If you
make a claim against any party that the Software infringes or contributes to
the infringement of any patent, then your patent license to the Software ends
immediately.

### Redistribution

The Terms and Conditions apply to all copies, modifications and derivatives of
the Software.

If you redistribute any copies, modifications or derivatives of the Software,
you must include a copy of or a link to these Terms and Conditions and not
remove any copyright notices provided in or with the Software.

### Disclaimer

THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.

IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.

### Trademarks

Except for displaying the License Details and identifying us as the origin of
the Software, you have no right under these Terms and Conditions to use our
trademarks, trade names, service marks or product names.

## Grant of Future License

We hereby irrevocably grant you an additional license to use the Software under
the Apache License, Version 2.0 that is effective on the second anniversary of
the date we make the Software available. On or after that date, you may use the
Software under the Apache License, Version 2.0, in which case the following
will apply:

Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License.

You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: Free To Use But Restricted",
]
requires-python = ">=3.10"
dependencies = [
Expand All @@ -35,7 +36,8 @@ dependencies = [
]

[project.license]
file = "LICENSE"
file = "LICENSE.md"
content-type = "text/markdown"

[project.readme]
file = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion scripts/custom_tools/custom_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Example out-of-tree tool"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2025, Embeint Inc"
__copyright__ = "Copyright 2025, Embeint Holdings Pty Ltd"

from infuse_iot.commands import InfuseCommand

Expand Down
2 changes: 1 addition & 1 deletion scripts/mqtt_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Read device packets from the Infuse-IoT Cloud MQTT broker"""

__author__ = "Jace Galvin"
__copyright__ = "Copyright 2025, Embeint Inc"
__copyright__ = "Copyright 2025, Embeint Holdings Pty Ltd"

import argparse
import base64
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""Infuse-IoT SDK meta-tool (infuse) main module"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import argparse
import importlib.util
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Infuse-IoT SDK meta-tool command parent class"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import argparse
import ctypes
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/bt_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Connect to remote Bluetooth device serial logs"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"


from infuse_iot.commands import InfuseCommand
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Infuse-IoT cloud interaction"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import sys
from http import HTTPStatus
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Manage Infuse-IoT credentials"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import yaml

Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/csv_annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Annotate CSV data"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

from infuse_iot.commands import InfuseCommand
from infuse_iot.util.argparse import ValidFile
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/csv_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Plot CSV data"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

from infuse_iot.commands import InfuseCommand
from infuse_iot.util.argparse import ValidFile
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/data_logger_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Synchronise data logger state from remote devices"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2025, Embeint Inc"
__copyright__ = "Copyright 2025, Embeint Holdings Pty Ltd"

import binascii
import glob
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Serial to Bluetooth gateway control tool"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import argparse
import base64
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/localhost.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Run a local server for TDF viewing"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import asyncio
import pathlib
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/native_bt.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Native Bluetooth gateway tool"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import argparse
import asyncio
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/ota_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Automatically OTA upgrade observed devices"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import argparse
import binascii
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/provision.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Provision device on Infuse Cloud"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import ctypes
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Run remote procedure calls on devices"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import argparse
import importlib
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/rpc_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Manage RPCs through Infuse-IoT cloud"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import argparse
import base64
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/serial_throughput.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Test serial throughput to local gateway"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import random
import time
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/tdf_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Save received TDFs in CSV files"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import os
import time
Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/tools/tdf_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Display received TDFs in a list"""

__author__ = "Jordan Yates"
__copyright__ = "Copyright 2024, Embeint Inc"
__copyright__ = "Copyright 2024, Embeint Holdings Pty Ltd"

import time

Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/util/soc/nrf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2025 Embeint Inc
# Copyright (c) 2025 Embeint Holdings Pty Ltd
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
2 changes: 1 addition & 1 deletion src/infuse_iot/util/soc/stm.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (c) 2020 Teslabs Engineering S.L.
# Copyright (c) 2025 Embeint Inc
# Copyright (c) 2025 Embeint Holdings Pty Ltd
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
Loading