1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2024-11-01 09:20:37 +02:00
Antorcha, LED-based signal device (for viewing from up to ~50 m) http://projects.qi-hardware.com/index.php/p/antorcha/
Go to file
Werner Almesberger c6fc8190de fw/image.c: fix use of hash functions; make image pointer setup more readable
It was almost impossible NOT to read

next_image = p = image == images[0] ? ...
                      ^^^^
as if it was

next_image = p = image = images[0] ? ...
                      ^^^
2012-06-20 16:51:40 -03:00
components Initial commit 2012-06-11 22:18:21 -03:00
doc PROTOCOL: move over to doc/ 2012-06-20 11:39:18 -03:00
fw fw/image.c: fix use of hash functions; make image pointer setup more readable 2012-06-20 16:51:40 -03:00
hw hw/: pull SLP_TR down, not up 2012-06-16 10:27:31 -03:00
tools tools/antorcha.c: add image upload (doesn't work yet) 2012-06-20 16:50:23 -03:00
BOOKSHELF Initial commit 2012-06-11 22:18:21 -03:00
Makefile Initial commit 2012-06-11 22:18:21 -03:00
README README: explain directory placement and avrdude.conf entry 2012-06-18 20:49:11 -03:00

Antorcha - A LED-based signal device
====================================

...


Directory placement
-------------------

Antorcha makes extensive use of libraries and header of the ben-wpan
project. For this, the top-level directory of the ben-wpan project must
be in the same directory as the top-level directory of Antorcha. E.g.,

/home/qi/ben-wpan/
/home/qi/antorcha/


/etc/avrdude.conf entry
-----------------------

Antorcha uses the atusb programming adapter from the ben-wpan project.
Since the pin positions of MISO and MOSI are swapped between ATmega32U2
and the ATmega168, the following entry is needed in avrdude.conf (which
is the same as the entry for nanonote_atusb except that the pin numbers
for mosi and miso are swapped):

programmer
  id	= "nanonote_antorcha";
  desc	= "NanoNote 8:10 card adapter for ATUSB";
  type	= nanonote;
  reset	= 1;
  sck	= 8;
  mosi	= 6;
  miso	= 7;
  pgmled = 2;
;