-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathASKTransceiver.hs
45 lines (41 loc) · 1.91 KB
/
ASKTransceiver.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
-----------------------------------------------------------------------------
-- |
-- Module : Main
-- Copyright : Ingo Sander
-- License : BSD-style (see the file LICENSE)
--
-- Maintainer : ingo@kth.se
-- Stability : experimental
-- Portability : portable
--
-- This is a shallow implementation of an Asynchronous Shift Key
-- Transceiver. The <files/docs/DocumentationTransceiver.pdf DOCUMENTATION>
-- was written in Literate Haskell style and generate with pdflatex.
--
-----------------------------------------------------------------------------
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver (
-- * Main
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Main,
-- * Gaussian
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Gaussian,
-- * Parameters
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Parameters,
-- * Transceiver
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Transceiver,
-- * Utilities
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Utilities,
-- * Controller
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Controller,
-- * EncDec
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.EncDec,
-- * TransceiverSystem
module ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.TransceiverSystem
) where
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Main
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Gaussian
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Parameters
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Transceiver
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Utilities
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.Controller
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.EncDec
import ForSyDe.Shallow.Example.Heterogeneous.ASKTransceiver.TransceiverSystem