Merge pull request #1973 from g-oikonomou/contrib/sensniff-submodule
Add sensniff as a submodule
This commit is contained in:
commit
2464cdadc9
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -14,3 +14,6 @@
|
||||||
path = platform/stm32nucleo-spirit1/stm32cube-lib
|
path = platform/stm32nucleo-spirit1/stm32cube-lib
|
||||||
url = https://github.com/STclab/stm32nucleo-spirit1-lib
|
url = https://github.com/STclab/stm32nucleo-spirit1-lib
|
||||||
|
|
||||||
|
[submodule "tools/sensniff"]
|
||||||
|
path = tools/sensniff
|
||||||
|
url = https://github.com/g-oikonomou/sensniff.git
|
||||||
|
|
|
@ -23,3 +23,23 @@ all: $(CONTIKI_PROJECT)
|
||||||
|
|
||||||
CONTIKI = ../..
|
CONTIKI = ../..
|
||||||
include $(CONTIKI)/Makefile.include
|
include $(CONTIKI)/Makefile.include
|
||||||
|
|
||||||
|
PYTHON ?= python
|
||||||
|
SENSNIFF = $(CONTIKI)/tools/sensniff/sensniff.py
|
||||||
|
|
||||||
|
ifeq ($(BAUDRATE),)
|
||||||
|
BAUDRATE = 460800
|
||||||
|
endif
|
||||||
|
|
||||||
|
SENSNIFF_FLAGS += -b $(BAUDRATE)
|
||||||
|
|
||||||
|
ifneq ($(PORT),)
|
||||||
|
SENSNIFF_FLAGS += -d $(PORT)
|
||||||
|
endif
|
||||||
|
|
||||||
|
sniff:
|
||||||
|
ifeq ($(wildcard $(SENSNIFF)), )
|
||||||
|
$(error Could not find the sensniff script. Did you run 'git submodule update --init' ?")
|
||||||
|
else
|
||||||
|
$(PYTHON) $(SENSNIFF) $(SENSNIFF_FLAGS)
|
||||||
|
endif
|
||||||
|
|
|
@ -11,6 +11,12 @@ Running
|
||||||
* Run sensniff on your host
|
* Run sensniff on your host
|
||||||
* Fire up wireshark and enjoy.
|
* Fire up wireshark and enjoy.
|
||||||
|
|
||||||
|
You can run sensniff manually, or you can simply run `make sniff` from within
|
||||||
|
this directory. If you choose the latter option, you may have to specify the
|
||||||
|
port where you device is connected by using the PORT variable. For example, if
|
||||||
|
your device is connected to `/dev/ttyUSB1` then you should run
|
||||||
|
`make PORT=/dev/ttyUSB1 sniff`.
|
||||||
|
|
||||||
Make sure your device's UART baud rate matches the `-b` argument passed to
|
Make sure your device's UART baud rate matches the `-b` argument passed to
|
||||||
sensniff. I strongly recommend using at least 460800. This comment does not
|
sensniff. I strongly recommend using at least 460800. This comment does not
|
||||||
apply if your device is using native USB.
|
apply if your device is using native USB.
|
||||||
|
@ -44,7 +50,7 @@ The following radios have been tested:
|
||||||
* CC2530/CC2531
|
* CC2530/CC2531
|
||||||
* CC1200
|
* CC1200
|
||||||
|
|
||||||
One you have the radio sorted out, you also need to configure character I/O.
|
Once you have the radio sorted out, you also need to configure character I/O.
|
||||||
The firmware captures wireless frames and streams them over a serial line to
|
The firmware captures wireless frames and streams them over a serial line to
|
||||||
the host where your device is connected. This can be achieved over UART or over
|
the host where your device is connected. This can be achieved over UART or over
|
||||||
CDC-ACM. The example makes zero assumptions about your hardware's capability,
|
CDC-ACM. The example makes zero assumptions about your hardware's capability,
|
||||||
|
@ -79,5 +85,12 @@ and:
|
||||||
|
|
||||||
#define SENSNIFF_IO_DRIVER_H "header-with-my-own-defines.h"
|
#define SENSNIFF_IO_DRIVER_H "header-with-my-own-defines.h"
|
||||||
|
|
||||||
|
* The build system will also try to include `platform/Makefile.platform`. You
|
||||||
|
can create this Makefile if you want to extend the build system e.g. by adding
|
||||||
|
source files to the build, or by specifying Make variables. A common reason why
|
||||||
|
you may wish to do so would be to specify your device's baudrate. In doing so,
|
||||||
|
`make sniff` will pass the correct value as the argument to `-b`. You do not
|
||||||
|
have to create this file if you don't need to do so.
|
||||||
|
|
||||||
That should be it!
|
That should be it!
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,8 @@
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
#if CC2538_IO_CONF_USB
|
#if CC2538_IO_CONF_USB
|
||||||
#define USB_SERIAL_CONF_ENABLE 1
|
#define USB_SERIAL_CONF_ENABLE 1
|
||||||
|
#else
|
||||||
|
#define UART0_CONF_BAUD_RATE 460800
|
||||||
#endif
|
#endif
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
#define SENSNIFF_IO_DRIVER_H "pool/cc2538-io.h"
|
#define SENSNIFF_IO_DRIVER_H "pool/cc2538-io.h"
|
||||||
|
|
1
examples/sensniff/jn516x/Makefile.jn516x
Normal file
1
examples/sensniff/jn516x/Makefile.jn516x
Normal file
|
@ -0,0 +1 @@
|
||||||
|
BAUDRATE = 1000000
|
1
tools/sensniff
Submodule
1
tools/sensniff
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 0d57c1129b601d29a58bffe6e34803af5e1701af
|
Loading…
Reference in a new issue