-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathREADME
70 lines (50 loc) · 2.28 KB
/
README
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
What the heck is this thing?
----------------------------
It's a bootloader for AVR and other micros that can deliver your code
to the MCU via cheap nrf24l01 wireless modules.
Is it good?
-----------
* Clean architecture
* Very portable, since it's based off antares
* Easy to integrate external memory devices, since
it supports several memory partitions.
* Easy to add your own device-specific hacks.
Can I use it with arduino?
--------------------------
Yes, you can. The bootloader doesn't care where you got your file from.
Be it arduino, avr-gcc, avr-brainfuck compiler, /dev/urandom or even astral ;)
Does it work with intel hex?
----------------------------
Not yet. rf24tool only accepts binary files. So either add -Obinary to your
makefiles, or use srecord/hex2bin to get a binary file.
Does it work under windows?
---------------------------
No. Only Linux and other *nix flavors that have libusb. Patches welcome.
Does it work under Mac OS X?
---------------------------
No. Only Linux and other *nix flavors that have libusb. Patches welcome.
What about usb programming dongle?
----------------------------------
See README.dongle
How to connect nrf24l01 with avr/arduino?
-----------------------------------------
See README.compiling. If the relevant section is not enough for you, I
suggest you give official nrf24l01 datasheet a read as well as avr's
datasheet. I can't pack a book 'avr for dummies' into a small README file.
Sorry.
Can I use nrf24l01 wired directly to Raspberry Pi/OpenWRT Router/Toaster?
-------------------------------------------------------------------------
Theoretically - yes. Practically - you'll need to implement spidev or
gpio-bitbang adaptor for rf24tool.
See rf24tool/adaptor-uisp.c as a reference.
This is TODO, yet not a priority one.
Daunting documents worth reading
--------------------------------
README.compiling - How to compile the bootloader for your device.
README.hacking - If you want to help out by porting to new devices.
README.dongle - How to get your programming dongle up and running.
README.app - How to compile the userspace app.
Dude, this crazy stuff is too hard on my brains
-----------------------------------------------
And who said it will be easy? Go take a break, try again and send me some
patches.