mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 01:55:48 -05:00
Renamed channel plugin directories
This commit is contained in:
parent
6cc4434019
commit
ef9dbefe50
@ -263,16 +263,21 @@ The `plugins` subdirectory contains the associated plugins used to manage device
|
|||||||
- `xxxplugin.h/cpp` : Plugin interface
|
- `xxxplugin.h/cpp` : Plugin interface
|
||||||
- `xxxsettings.h/cpp` : Configuration manager
|
- `xxxsettings.h/cpp` : Configuration manager
|
||||||
- `xxxthread.h/cpp` : Reading samples
|
- `xxxthread.h/cpp` : Reading samples
|
||||||
|
- `xxx.pro` : Qt .pro file for Windows/Android build
|
||||||
- `channel`: Channel handlers:
|
- `channel`: Channel handlers:
|
||||||
- `xxx` : Demodulator internal handler (e.g xxx = am)
|
- `demodxxx` : Demodulator internal handler (e.g xxx = demodam)
|
||||||
- `xxxdemod.h/cpp` : Demodulator core
|
- `xxxdemod.h/cpp` : Demodulator core
|
||||||
- `xxxdemodgui.h/cpp` : Demodulator GUI
|
- `xxxdemodgui.h/cpp` : Demodulator GUI
|
||||||
- `xxxplugin.h/cpp` : Plugin interface
|
- `xxxplugin.h/cpp` : Plugin interface
|
||||||
|
- `demodxxx.pro` : Qt .pro file for Windows/Android build
|
||||||
- `xxxanalyzer` : Analyzer internal handler (e.g xxx = channel)
|
- `xxxanalyzer` : Analyzer internal handler (e.g xxx = channel)
|
||||||
- `xxxanalyzer.h/cpp` : Analyzer core
|
- `xxxanalyzer.h/cpp` : Analyzer core
|
||||||
- `xxxanalyzergui.h/cpp` : Analyzer GUI
|
- `xxxanalyzergui.h/cpp` : Analyzer GUI
|
||||||
- `xxxanalyzerplugin.h/cpp` : Analyzer plugin manager
|
- `xxxanalyzerplugin.h/cpp` : Analyzer plugin manager
|
||||||
|
- `xxxanalyzer.pro` : Qt .pro file for Windows/Android build
|
||||||
- `xxxsrc` : Interface to the outside (e.g xxx = udp):
|
- `xxxsrc` : Interface to the outside (e.g xxx = udp):
|
||||||
- `xxxsrc.h/cpp` : Inteface core
|
- `xxxsrc.h/cpp` : Inteface core
|
||||||
- `xxxsrcgui.h/cpp` : Interface GUI
|
- `xxxsrcgui.h/cpp` : Interface GUI
|
||||||
- `xxxsrcplugin/h/cpp` : Interface plugin manager
|
- `xxxsrcplugin/h/cpp` : Interface plugin manager
|
||||||
|
- `xxxsrc.pro` : Qt .pro file for Windows/Android build
|
||||||
|
|
@ -1,13 +1,13 @@
|
|||||||
project(demod)
|
project(demod)
|
||||||
|
|
||||||
add_subdirectory(lora)
|
add_subdirectory(demodlora)
|
||||||
add_subdirectory(demodam)
|
add_subdirectory(demodam)
|
||||||
add_subdirectory(bfm)
|
add_subdirectory(demodbfm)
|
||||||
add_subdirectory(nfm)
|
add_subdirectory(demodnfm)
|
||||||
add_subdirectory(ssb)
|
add_subdirectory(demodssb)
|
||||||
add_subdirectory(tcpsrc)
|
add_subdirectory(tcpsrc)
|
||||||
add_subdirectory(udpsrc)
|
add_subdirectory(udpsrc)
|
||||||
add_subdirectory(wfm)
|
add_subdirectory(demodwfm)
|
||||||
add_subdirectory(chanalyzer)
|
add_subdirectory(chanalyzer)
|
||||||
|
|
||||||
#add_subdirectory(tetra)
|
#add_subdirectory(tetra)
|
||||||
|
Loading…
Reference in New Issue
Block a user