Based on Pflichtenheft v2.2, documents the full system design including daemon, API, frontend, and infrastructure with agreed deviations (Axum 0.8, SQLx 0.8, Vite 6, Tailwind 4). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
493 B
C
35 lines
493 B
C
/*
|
|
|
|
Module: arduino_lmic.h
|
|
|
|
Function:
|
|
Arduino-LMIC C++ top-level include file
|
|
|
|
Copyright & License:
|
|
See accompanying LICENSE file.
|
|
|
|
Author:
|
|
Matthijs Kooijman 2015
|
|
Terry Moore, MCCI November 2018
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef _ARDUINO_LMIC_H_
|
|
# define _ARDUINO_LMIC_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
#include "lmic/lmic.h"
|
|
#include "lmic/lmic_bandplan.h"
|
|
#include "lmic/lmic_util.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _ARDUINO_LMIC_H_ */
|