HSC2011/Software/Firmware: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
(copied some content from old software page)
 
(added docu todo, removed flashing settings)
Zeile 26: Zeile 26:
 
(if you flash on an arduino uno, replace "duemilanove328" with "uno"; you might need to adapt the device name as well). The installation routine will be different if you use another way of flashing than flashing an ATMega sitting inside an Arduino; consult your flasher's operating instructions in that case.
 
(if you flash on an arduino uno, replace "duemilanove328" with "uno"; you might need to adapt the device name as well). The installation routine will be different if you use another way of flashing than flashing an ATMega sitting inside an Arduino; consult your flasher's operating instructions in that case.
  
== Flashing ==
+
== TODO documentation ==
 +
 
 +
* eeprom (mac addresses)
 +
* fuse settings
  
 
== TODO ==
 
== TODO ==

Version vom 2. Mai 2011, 16:40 Uhr

The firmware is the part of the software flashed to the ATMega328 on the EduBuzzers. It capable of both serving as a buzzer and being a base station.

It is written in C (technically, C++, although hardly any C++ is used). It uses the avr-libc, JeeLabs' RF12 library and Paul Stoffregen's OneWire library. A fourth "external" dependency is EmbedVM, which is documented as our virtual machine as it was developed for this project.

Compiling

Note: You can skip this step, and instead use the file firmware/firmware.hex from the project repository.

In order to compile the firmware, you'll need

You don't need to explicitly install the other libraries, as they are chcked into our repository.

Once you installed the required programs, build the firmware from

$ ./build.sh

and install it using

$ arduino-cc -P /dev/ttyUSB0  -B duemilanove328 firmware.cc hardware.cc RF12.cpp OneWire.cpp embedvm.c firmware_vm.cc firmware_evt.cc firmware_ser.cc firmware_net.cc

(if you flash on an arduino uno, replace "duemilanove328" with "uno"; you might need to adapt the device name as well). The installation routine will be different if you use another way of flashing than flashing an ATMega sitting inside an Arduino; consult your flasher's operating instructions in that case.

TODO documentation

  • eeprom (mac addresses)
  • fuse settings

TODO

Open issues are, in descending priority:

  • separate timeout arrays for login and event
  • redirect messages for controlling the base station itself
  • fine-tuning timing for re-sends and responses (may only need validation)
  • melody api
  • reading battery status using new firmware
  • reading RSSI state
  • multicasts
  • removing arduino specific stuff to reduce resource usage (not a priority unless resources become a real problem)