Changes between Version 9 and Version 10 of FlexWaves
- Timestamp:
- 11/28/09 13:16:36 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FlexWaves
v9 v10 5 5 The license of this folder may change from one object to another, even from one file to another thus, we encourage the reader to read in each source file the specific license before using and distributing it. 6 6 7 Some of the waveforms and/or objects under this folder have been developed by graduate and under-graduate students. This means that the level of optimi zation and compliance with the standards is not guaranteed. However, they may be useful for testing purposes or evaluating the performance of the algorithms under different situations or platforms.7 Some of the waveforms and/or objects under this folder have been developed by graduate and under-graduate students. This means that the level of optimisation and compliance with the standards is not guaranteed. However, they may be useful for testing purposes or evaluating the performance of the algorithms under different situations or platforms. 8 8 9 '''NOTE:''' Waveforms are now distributed with the ALOE packages. They are already preconfigured and ready to be used. You will find the latest versions in the QuickStartGuide page. This page describes the applications and some important notes about them. 9 10 10 == Test == 11 12 This waveform is a dummy example for testing purposes. It consist on a single executable that can be instantiated as two different functionalities: read and write. The final function depends on the interfaces modes (input/output) we have configured it for in the Application's Definition File. 13 14 You can download the waveform executable from our svn repository: 15 11 The source for all components can be found at: 16 12 {{{ 17 svn co http://flexnets.upc.edu/svn/phal-apps/trunk/test 13 http://flexnets.upc.edu/svn/phal/trunk/modules 18 14 }}} 19 15 20 And the Application's Definition File from:16 And the waveform's description files at: 21 17 {{{ 22 svn co http://flexnets.upc.edu/svn/phal-apps/trunk/phal-repositories/test.app 18 http://flexnets.upc.edu/svn/phal/trunk/example-repository/swman_apps/ 23 19 }}} 24 20 25 T o compile and use it follow the instructions under WaveformDeveloperGuide and AloeUserGuide21 The following waveforms are shipped with the ALOE package: 26 22 23 == Example waveforms == 24 25 This waveform is a simple digital modem. It can be configured to perform BPSK, QPSK, QAM4, QAM64 and so on. The modulator/demodulator is a single program which can be instantiated as a modulator or demodulator. A binary source and a sink generate and reads random data. 27 26 28 27 == UTRAN == 29 28 30 This waveform partially implements the bit-level processing of a UTRAN trans ceiver.29 This waveform partially implements the bit-level processing of a UTRAN transmitter and receiver. The transmitter part consist on the following modules: 31 30 31 binsource(*) -> crc(*) -> coder(*) -> ratematching(*) -> interleaving(*) -> timemux(*) -> trchmux -> interleaving -> channel 32 32 33 You can download the waveform executable from our svn repository: 33 Where (*) indicates that two transport channels transmit in parallel. The receiver chain implements the same modules in the opposite direction. 34 34 35 {{{ 36 svn co http://flexnets.upc.edu/svn/phal-apps/trunk/utran 37 }}} 35 - The coder is a UMTS TurboCoder for the data channel and a Convolutional Coder for the control one (viterbi decoder not yet implemented). 36 - The ratematching component is specifically designed for the UMTS chain and can not be configured to operate in another context. 38 37 39 And the Application's Definition File from: 40 {{{ 41 svn co http://flexnets.upc.edu/svn/phal-apps/trunk/phal-repositories/utran.app 42 }}} 43 44 To compile and use it follow the instructions under WaveformDeveloperGuide and AloeUserGuide 45 38 The waveform must operate at a period of 10ms, so this is the time-slot that should be fixed (see /usr/local/etc/platforms.conf). All components of each transport channel can operate at higher periods (20, 40, 80 ms). The component 'timemux' performs a time (de)-multiplexing of data frames and delivers 1 packet every 10ms to the channel. 46 39 47 40 … … 53 46 54 47 55 56 48 == Generating Modules from Matlab(c)'s Simulink(c) == 57 49
