CRF-EngTel (página) 2016-2: mudanças entre as edições
Ir para navegação
Ir para pesquisar
(12 revisões intermediárias por 2 usuários não estão sendo mostradas) | |||
Linha 8: | Linha 8: | ||
| <b>Contato:</b> || ramon.mayor@ifsc.edu.br | | <b>Contato:</b> || ramon.mayor@ifsc.edu.br | ||
|- | |- | ||
| <b>Atendimento:</b> || Lab. Desenv. de Tele - | | <b>Atendimento:</b> || Lab. Desenv. de Tele - Sextas-feiras | ||
|- | |- | ||
| <b>Horário:</b> || 13h30 às | | <b>Horário:</b> || 13h30 às 14h20 | ||
|- | |- | ||
|} | |} | ||
Linha 56: | Linha 56: | ||
*[https://www.youtube.com/playlist?list=PL618122BD66C8B3C4 GNU Radio Tutorial Series (Youtube)] | *[https://www.youtube.com/playlist?list=PL618122BD66C8B3C4 GNU Radio Tutorial Series (Youtube)] | ||
== | ;Instalar pelo Repositório | ||
Execute os comandos como superusuário : <syntaxhighlight lang=bash> | |||
apt-get install gnuradio | |||
apt-get install gqrx-sdr | |||
apt-get install rtl-sdr | |||
apt-get install gr-osmosdr | |||
apt-get install python-numpy | |||
apt-get install python-qwt5-qt4 | |||
</syntaxhighlight> | |||
Adicione a seguinte linha ao arquivo /etc/modprobe.d/blacklist.conf: <syntaxhighlight lang=bash> | |||
blacklist dvb_usb_rtl28xxu | |||
</syntaxhighlight> | |||
Execute o comando : <syntaxhighlight lang=bash> | |||
rmmod dvb_usb_rtl28xxu | |||
</syntaxhighlight> | |||
;Para Instalar o gnuradio Direto da fonte (versão atualizada): Ps: vá tomar uma café, pode demorar cerca de 2h. <syntaxhighlight lang=bash> | |||
wget http://www.sbrac.org/files/build-gnuradio | |||
chmod a+x build-gnuradio | |||
./build-gnuradio | |||
</syntaxhighlight> | |||
Entre com Yes, para todos as vezes que for requisitado. | |||
;Para Instalar o GQRX Direto da fonte: <syntaxhighlight lang=bash> | |||
sudo apt-get install qt5-default | |||
git clone https://github.com/csete/gqrx.git gqrx.git | |||
cd gqrx.git | |||
mkdir build | |||
cd build | |||
qmake .. | |||
make | |||
sudo make install | |||
</syntaxhighlight> | |||
Para abrir GNU Radio execute no terminal o comando: <syntaxhighlight lang=bash> | |||
gnuradio-companion | |||
</syntaxhighlight> | |||
Para abrir o GQRX execute no terminal o comando: <syntaxhighlight lang=bash> | |||
gqrx | |||
</syntaxhighlight> | |||
==Atividades a serem desenvolvidas== | |||
*[http:// | 1-Atividade 1 - Projeto SDR - Decode PAL-M Analogue TV | ||
*[https:// | *Projeto utilizando o ambiente GNU Radio e SDR para decodificar TV Analógica do sistema PAL-M | ||
*Base para o projeto: [[http://www.rtl-sdr.com/receiving-ntsc-analogue-tv-gnu-radio/ Receiving NTSC Analogue TV with GNU Radio and an RTL-SDR]] | |||
*Base para o projeto: [[https://github.com/kik/sdr-tv/wiki/RTL2832Uドングルを使ってテレビを見る! RTL2832Uドングルを使ってテレビを見る]] | |||
{| class="wikitable" | |||
|- | |- | ||
|Atividade | |Atividade 1: _ _ _ _ _ | ||
|- | |- | ||
|} | |} | ||
==Andamento da Disciplina== | ==Andamento da Disciplina== | ||
*Cap.1 - Estágios de TX e RX ( | *Cap.1 - Estágios analógicos de TX e RX (36h) | ||
*Cap.2 - Exploração de diagramas de blocos das principais arquiteturas ( | *Cap.2 - Exploração de diagramas de blocos das principais arquiteturas (18h) | ||
*Cap.3 - Rádio Definido por Software (SDR) | *Cap.3 - Rádio Definido por Software (SDR) (18h) | ||
Linha 90: | Linha 125: | ||
| Cap. 1 || Cap. 2 || Cap. 3 | | Cap. 1 || Cap. 2 || Cap. 3 | ||
|- | |- | ||
| | | _ _ _ _ || _ _ _ _ || _ _ _ _ | ||
|} | |} | ||
{{ENGTELECO}} | {{ENGTELECO}} |
Edição atual tal como às 20h21min de 8 de setembro de 2016
MURAL DE AVISOS E OPORTUNIDADES DA ÁREA DE TELECOMUNICAÇÕES
Professor: [Ramon Mayor Martins]
Contato: | ramon.mayor@ifsc.edu.br |
Atendimento: | Lab. Desenv. de Tele - Sextas-feiras |
Horário: | 13h30 às 14h20 |
Professor: [Rubem Toledo Bergamo]
Contato: | rubem@ifsc.edu.br |
Atendimento: | Lab. Desenv. II - Coord. Extensão |
Horário: |
1 Informações Gerais
2 Datas Importantes
[11/08/2016] Início das atividades
3 Aulas
4 Material de Aula
- Parte 1: Introdução aos Circuitos de Rádiofrequência
- Parte 2: Introdução ao Rádio Definido por Software (SDR)
- Parte 3: Revisão DSP - Filtros Digitais
5 Listas de Exercícios
6 Links auxiliares
- Software
- Documentos
- Tutorial Lab 1-5 Ettus
- Prof. Sharlene Katz - CSUN/EAFB - Software Defined Radio (SDR) Senior Project
- GNU Radio Tutorial Series (Youtube)
- Instalar pelo Repositório
Execute os comandos como superusuário :
apt-get install gnuradio
apt-get install gqrx-sdr
apt-get install rtl-sdr
apt-get install gr-osmosdr
apt-get install python-numpy
apt-get install python-qwt5-qt4
Adicione a seguinte linha ao arquivo /etc/modprobe.d/blacklist.conf:
blacklist dvb_usb_rtl28xxu
Execute o comando :
rmmod dvb_usb_rtl28xxu
- Para Instalar o gnuradio Direto da fonte (versão atualizada)
- Ps: vá tomar uma café, pode demorar cerca de 2h.
wget http://www.sbrac.org/files/build-gnuradio chmod a+x build-gnuradio ./build-gnuradio
Entre com Yes, para todos as vezes que for requisitado.
- Para Instalar o GQRX Direto da fonte
sudo apt-get install qt5-default git clone https://github.com/csete/gqrx.git gqrx.git cd gqrx.git mkdir build cd build qmake .. make sudo make install
Para abrir GNU Radio execute no terminal o comando:
gnuradio-companion
Para abrir o GQRX execute no terminal o comando:
gqrx
7 Atividades a serem desenvolvidas
1-Atividade 1 - Projeto SDR - Decode PAL-M Analogue TV
*Projeto utilizando o ambiente GNU Radio e SDR para decodificar TV Analógica do sistema PAL-M *Base para o projeto: [Receiving NTSC Analogue TV with GNU Radio and an RTL-SDR] *Base para o projeto: [RTL2832Uドングルを使ってテレビを見る]
Atividade 1: _ _ _ _ _ |
8 Andamento da Disciplina
- Cap.1 - Estágios analógicos de TX e RX (36h)
- Cap.2 - Exploração de diagramas de blocos das principais arquiteturas (18h)
- Cap.3 - Rádio Definido por Software (SDR) (18h)
Cap. 1 | Cap. 2 | Cap. 3 |
_ _ _ _ | _ _ _ _ | _ _ _ _ |