mirror of
https://github.com/Genaker/LoraSA.git
synced 2026-07-02 07:51:30 +02:00
13 lines
328 B
C++
13 lines
328 B
C++
// Main Spectrum Analyzer for Heltec V3 Boards
|
|
#ifdef APP_HELTEC_V3_SA
|
|
#include "../src_sa/main.cpp"
|
|
#endif
|
|
// Spectrum Analyzer for Vision MAster E260 e-ink display
|
|
#ifdef APP_E900_SA
|
|
#include "../src_eink/main.cpp"
|
|
#endif
|
|
// Test Transmitter Heltec V3 Boards
|
|
#ifdef APP_HELTEC_V3_TRANS
|
|
#include "../src_trans/main.cpp"
|
|
#endif
|