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>
31 lines
791 B
C
31 lines
791 B
C
/*
|
|
|
|
Module: lmic.h
|
|
|
|
Function:
|
|
Deprecated C++ top-level include file (use <arduino_lmic.h> instead).
|
|
|
|
Copyright & License:
|
|
See accompanying LICENSE file.
|
|
|
|
Author:
|
|
Terry Moore, MCCI November 2018
|
|
|
|
Note:
|
|
This header file is deprecated and is included for
|
|
transitional purposes. It's deprecated because it's
|
|
confusing to have src/lmic.h (this file) and src/lmic/lmic.h
|
|
(the API file for the C library). We can't take it out
|
|
yet, because it would inconvenience the world, but
|
|
we can hope that someday it will wither away (on a major
|
|
version bump).
|
|
|
|
Please don't add any new functionality in this file;
|
|
it is just a wrapper for arduino_lmic.h.
|
|
|
|
*/
|
|
|
|
#include "arduino_lmic.h"
|
|
|
|
/* end of file */
|