Added a real example on how to integrate simavr, etc
authorMichel Pollet <buserror@gmail.com>
Mon, 7 Dec 2009 19:45:17 +0000 (19:45 +0000)
committerMichel Pollet <buserror@gmail.com>
Mon, 7 Dec 2009 19:45:17 +0000 (19:45 +0000)
commit0bfce45007c162fa3f98f4369f7069f3da372502
treed3a9499dc902219a06f23e2447cb607b53bdd06b
parent024a09bbfa3065b99b2e7309dd157987b788c7fd
Added a real example on how to integrate simavr, etc

+ OpenGL app loads, runs a firmware and interacts with it.
  See the README in examples/ledramp
+ Updated Makefiles & Readme
  Streamlined the makefiles, so they use the Makefile.common
  rules and so on.  Also updated README to bring it up to date.
+ Adding TWI - work in progress
  Non working implementation skeleton. Defines a "slave" and a "bus"
  And the AVR twi interface that has one of each

Signed-off-by: Michel Pollet <buserror@gmail.com>
19 files changed:
.simavr.jcc
Makefile.common
README
examples/Makefile [new file with mode: 0644]
examples/board_ledramp/Makefile [new file with mode: 0644]
examples/board_ledramp/README [new file with mode: 0644]
examples/board_ledramp/atmega48_ledramp.c [new file with mode: 0644]
examples/board_ledramp/ledramp.c [new file with mode: 0644]
examples/parts/button.c [new file with mode: 0644]
examples/parts/button.h [new file with mode: 0644]
simavr/Makefile
simavr/cores/sim_mega644.c
simavr/cores/sim_megax8.c
simavr/cores/sim_megax8.h
simavr/sim/avr_twi.c [new file with mode: 0644]
simavr/sim/avr_twi.h [new file with mode: 0644]
simavr/sim/sim_twi.c [new file with mode: 0644]
simavr/sim/sim_twi.h [new file with mode: 0644]
tests/Makefile