blob: 98a9b584f42b1894d56d8c8a13e5faf1a3c2a29b (
plain)
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
|
-------------------------------------------------------------------------------
CC1101
-------------------------------------------------------------------------------
This directory contains captures of the communication between a CC1101
transceiver, connected to an AVR microcontroller, and another transceiver.
Logic analyzer setup
--------------------
The logic analyzer used was a Saleae Logic clone (at 16 MHz):
Probe CC1101
----------------------
0 MOSI
1 CLK
2 MISO
3 GDO2 (general purpose output 2 of CC1101)
4 GDO0 (general purpose output 0 of CC1101, used as interrupt
signal from CC1101 to AVR microcontroller, active low)
5 CS, active low
Data
----
The sigrok command line used was:
$ sigrok-cli.exe -d fx2lafw --config "samplerate=16 MHz" --time 1s \
--channels D0=MOSI,D1=CLK,D2=MISO,D3=GDO2,D4=GDO0,D5=CS \
--triggers CS=f \
-P spi:clk=CLK:mosi=MOSI:miso=MISO:cs=CS,cc1101
|