Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
99c99fd
Add V2 sub-format
goebish Apr 9, 2019
5ec6a4b
Fix bind and hopping
goebish Apr 10, 2019
04a8c73
Fix typo
goebish Apr 11, 2019
9dae018
Add arbitrary Tx ID
goebish Apr 11, 2019
cfdb8b3
Fix lint
goebish Apr 11, 2019
c4d7cdc
Fix lint
goebish Apr 11, 2019
ff1a962
Add E010 protocol for CC2500
goebish Apr 16, 2019
00001c2
Fix lint
goebish Apr 16, 2019
eee9559
Remove MJXq references
goebish Apr 16, 2019
0f234ec
Cleanup
goebish Apr 16, 2019
58ed1a8
Disable cc2500 crc
goebish Apr 16, 2019
aa8744b
Set cc2500 packet length
goebish Apr 16, 2019
8699421
Fix typo
goebish Apr 16, 2019
7707724
Disable cc2500 preamble and syncword
goebish Apr 16, 2019
013d92f
Calibrate cc2500 rf channels for faster hopping
goebish Apr 16, 2019
e47d502
Adjust packet size
goebish Apr 17, 2019
9b17324
Disable cc2500 preamble / syncword
goebish Apr 17, 2019
eb2844d
Start moving xn297 emulation logic
goebish Apr 18, 2019
78e85a2
Explicit XN297 scramble mode
goebish Apr 18, 2019
e6dac7a
Add XN297L functions to CC2500 interface
goebish Apr 18, 2019
6548c67
Remove duplicated code
goebish Apr 18, 2019
4278789
Fix crc for 3 byte address
goebish Apr 18, 2019
5846ee7
Merge branch 'protocol_gd00x_v2' into cc2500_xn297L_emu
goebish Apr 18, 2019
ce6c215
Remove E010 and Phoenix formats from MJXq protocol
goebish Apr 18, 2019
c52e9e8
Convert GD00X protocol to CC2500
goebish Apr 18, 2019
3cbea89
Fix modular build
goebish Apr 18, 2019
28a182f
Convert V911S protocol to CC2500
goebish Apr 19, 2019
4c42266
Rename protocol file
goebish Apr 19, 2019
ee7176e
Fix modular build
goebish Apr 19, 2019
6647eab
Add Freq-Coarse setting to gd00x
goebish Apr 19, 2019
cd87637
Set base frequency to 2400 MHz instead of 2399.999268
goebish Apr 19, 2019
231bb33
Set freq coarse step to 100 kHz
goebish Apr 19, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adjust packet size
  • Loading branch information
goebish committed Apr 17, 2019
commit e47d502eaf11f1d6f2934208ce70773c3cc917a5
2 changes: 1 addition & 1 deletion 2 src/protocol/e010_cc2500.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static void XN297L_WritePayload(const u8* msg, u8 len)
// flush tx FIFO
CC2500_Strobe(CC2500_SFTX);
// packet length
CC2500_WriteReg(CC2500_3F_TXFIFO, last + 4);
CC2500_WriteReg(CC2500_3F_TXFIFO, last + 3);
// xn297L preamble
CC2500_WriteRegisterMulti(CC2500_3F_TXFIFO, (u8*)"\x71\x0f\x55", 3);
// xn297 packet
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.