mirror of
https://github.com/buildwithparallel/mm-iot-sdk
synced 2026-08-10 21:27:58 -04:00
This commit introduces version 2.6.4 of the Morse Micro MM-IoT-SDK for microcontroller based platforms.
18 lines
545 B
Makefile
18 lines
545 B
Makefile
#
|
|
# Copyright 2023 Morse Micro
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
BACKOFF_ALGORITHM_DIR = src/freertos-libs/backoffAlgorithm/source
|
|
|
|
# C files to be included while compiling
|
|
BACKOFF_ALGORITHM_SRCS_C += backoff_algorithm.c
|
|
|
|
# Header files for dependancy checking
|
|
BACKOFF_ALGORITHM_SRCS_H += include/backoff_algorithm.h
|
|
|
|
MMIOT_SRCS_C += $(addprefix $(BACKOFF_ALGORITHM_DIR)/,$(BACKOFF_ALGORITHM_SRCS_C))
|
|
MMIOT_SRCS_H += $(addprefix $(BACKOFF_ALGORITHM_DIR)/,$(BACKOFF_ALGORITHM_SRCS_H))
|
|
|
|
MMIOT_INCLUDES += $(BACKOFF_ALGORITHM_DIR)/include
|