Changes between Version 5 and Version 6 of QuickStartGuide
- Timestamp:
- 05/22/09 23:00:47 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QuickStartGuide
v5 v6 5 5 == Downloading & Installing == 6 6 7 === From source ===7 === Source === 8 8 9 9 Download from http://flexnets.upc.edu/downloads/aloe-1.0.tar.gz … … 19 19 }}} 20 20 21 === Debian packages===21 === Debian (i386) === 22 22 23 23 Edit your /etc/apt/sources.list and add the following line: 24 24 25 {{{ 26 deb http://flexnets.upc.edu/debian/ ./ 27 }}} 28 29 Then update & install: 30 {{{ 31 sudo apt-get update 32 sudo apt-get install aloe 33 }}} 34 35 === Fedora (i386) === 36 37 Download rpm at http://flexnets.upc.edu/downloads/aloe-1.0-1.i386.rpm 38 25 39 26 40 == Running an example == … … 40 54 And your waveform is running! 41 55 56 You can now view information about execution time: 57 {{{ 58 runph$: execinfo example 59 }}} 60 61 You can list available statistics or view the output signal: 62 {{{ 63 runph$: statls example 64 runph$: statget example sink signal_out 65 }}} 66 67 Now change sampling frequency and see its effects in execution time and the output signal: 68 {{{ 69 runph$: statset example source freq_sample 10000.0 70 runph$: execinfo example 71 runph$: statget example sink signal_out 72 }}} 73 42 74 43 75 [[BR]]