]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commit
Import fx2lib into fx2lafw directly.
authorUwe Hermann <redacted>
Wed, 18 Jul 2012 09:31:24 +0000 (11:31 +0200)
committerUwe Hermann <redacted>
Wed, 18 Jul 2012 10:41:49 +0000 (12:41 +0200)
commit3608c1063d17c56c038434eba5a6b11f26e530b5
tree399db70e24ea1d36b09c2087cd8ca27c75538ab4
parent8b13135e5fd175911ad9d8283b17fc97fe0c7709
Import fx2lib into fx2lafw directly.

We want a local fx2lib copy in fx2lafw for various reasons, e.g. to make
life simpler for all distros (none of which ship any fx2lib packages,
and neither would it make sense to do so really), and as we'll want/need
local changes to fix build issues and possibly other stuff anyway.

This copy of fx2lib is not the main upstream version from

  git://github.com/mulicheng/fx2lib.git

which has been last updated in 2010, but rather from

  git://github.com/ubixum/fx2lib.git

The only difference is that the latter contains one patch which fixes
some issues with more recent sdcc versions (interrupt vs. __interrupt,
_asm vs. __asm, xdata vs. __xdata__, and many others).

The imported fx2lib copy is "416c104cbd" from Feb 12, 2012.
119 files changed:
README
fx2lib/.gitignore [new file with mode: 0644]
fx2lib/CHANGELOG [new file with mode: 0644]
fx2lib/COPYING [new file with mode: 0644]
fx2lib/COPYING.LESSER [new file with mode: 0644]
fx2lib/Makefile [new file with mode: 0644]
fx2lib/NOTES [new file with mode: 0644]
fx2lib/README [new file with mode: 0644]
fx2lib/docs/docs.conf [new file with mode: 0644]
fx2lib/docs/intro/.gitignore [new file with mode: 0644]
fx2lib/docs/intro/Makefile [new file with mode: 0644]
fx2lib/docs/intro/intro.tex [new file with mode: 0644]
fx2lib/examples/NOTES [new file with mode: 0644]
fx2lib/examples/bulkloop/Makefile [new file with mode: 0644]
fx2lib/examples/bulkloop/bulkloop.c [new file with mode: 0644]
fx2lib/examples/bulkloop/dscr.a51 [new file with mode: 0644]
fx2lib/examples/bulkloop/load.py [new file with mode: 0644]
fx2lib/examples/bulkloop/test.cpp [new file with mode: 0644]
fx2lib/examples/bulkloop/test.py [new file with mode: 0644]
fx2lib/examples/eeprom/client.py [new file with mode: 0644]
fx2lib/examples/eeprom/firmware/Makefile [new file with mode: 0644]
fx2lib/examples/eeprom/firmware/dscr.a51 [new file with mode: 0644]
fx2lib/examples/eeprom/firmware/eeprom.c [new file with mode: 0644]
fx2lib/examples/fx2/.gitignore [new file with mode: 0644]
fx2lib/examples/fx2/cpp/.gitignore [new file with mode: 0644]
fx2lib/examples/fx2/cpp/__init__.py [new file with mode: 0644]
fx2lib/examples/fx2/cpp/fx2.cpp [new file with mode: 0644]
fx2lib/examples/fx2/cpp/fx2.h [new file with mode: 0644]
fx2lib/examples/fx2/cpp/fx2.i [new file with mode: 0644]
fx2lib/examples/fx2/fx2load/__init__.py [new file with mode: 0644]
fx2lib/examples/fx2/scripts/fx2load [new file with mode: 0755]
fx2lib/examples/fx2/setup.py [new file with mode: 0644]
fx2lib/examples/i2c/Makefile [new file with mode: 0644]
fx2lib/examples/i2c/i2c.c [new file with mode: 0644]
fx2lib/examples/i2c/load.py [new file with mode: 0644]
fx2lib/examples/lights/.gitignore [new file with mode: 0644]
fx2lib/examples/lights/Makefile [new file with mode: 0644]
fx2lib/examples/lights/lights.c [new file with mode: 0644]
fx2lib/examples/reset/Makefile [new file with mode: 0644]
fx2lib/examples/reset/fx2_c0.c [new file with mode: 0644]
fx2lib/examples/reset/reset.c [new file with mode: 0644]
fx2lib/examples/serial/Makefile [new file with mode: 0644]
fx2lib/examples/serial/serial.c [new file with mode: 0644]
fx2lib/examples/timers/.gitignore [new file with mode: 0644]
fx2lib/examples/timers/Makefile [new file with mode: 0644]
fx2lib/examples/timers/timers.c [new file with mode: 0644]
fx2lib/fw/.gitignore [new file with mode: 0644]
fx2lib/fw/Makefile [new file with mode: 0644]
fx2lib/fw/device.c [new file with mode: 0644]
fx2lib/fw/dscr.a51 [new file with mode: 0644]
fx2lib/fw/fw.c [new file with mode: 0644]
fx2lib/fw/readme.txt [new file with mode: 0644]
fx2lib/include/autovector.h [new file with mode: 0644]
fx2lib/include/delay.h [new file with mode: 0644]
fx2lib/include/eputils.h [new file with mode: 0644]
fx2lib/include/fx2ints.h [new file with mode: 0644]
fx2lib/include/fx2macros.h [new file with mode: 0644]
fx2lib/include/fx2regs.h [new file with mode: 0644]
fx2lib/include/fx2types.h [new file with mode: 0644]
fx2lib/include/gpif.h [new file with mode: 0644]
fx2lib/include/i2c.h [new file with mode: 0644]
fx2lib/include/lights.h [new file with mode: 0644]
fx2lib/include/serial.h [new file with mode: 0644]
fx2lib/include/setupdat.h [new file with mode: 0644]
fx2lib/lib/.gitignore [new file with mode: 0644]
fx2lib/lib/Makefile [new file with mode: 0644]
fx2lib/lib/delay.c [new file with mode: 0644]
fx2lib/lib/eputils.c [new file with mode: 0644]
fx2lib/lib/fx2.mk [new file with mode: 0644]
fx2lib/lib/gpif.c [new file with mode: 0644]
fx2lib/lib/i2c.c [new file with mode: 0644]
fx2lib/lib/int4av.a51 [new file with mode: 0644]
fx2lib/lib/interrupts/ep0ack_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep0in_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep0out_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep0ping_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep1in_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep1out_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep1ping_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep2_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep2ef_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep2ff_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep2isoerr_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep2pf_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep2ping_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep4_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep4ef_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep4ff_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep4isoerr_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep4pf_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep4ping_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep6_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep6ef_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep6ff_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep6isoerr_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep6pf_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep6ping_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep8_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep8ef_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep8ff_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep8isoerr_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep8pf_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ep8ping_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/errlimit_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/gpifdone_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/gpifwf_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/hispeed_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/ibn_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/sof_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/spare_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/sudav_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/suspend_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/sutok_isr.c [new file with mode: 0644]
fx2lib/lib/interrupts/usbreset_isr.c [new file with mode: 0644]
fx2lib/lib/serial.c [new file with mode: 0644]
fx2lib/lib/setupdat.c [new file with mode: 0644]
fx2lib/lib/usbav.a51 [new file with mode: 0644]
fx2lib/utils/gpif2dat [new file with mode: 0755]
fx2lib/utils/ihx2iic.py [new file with mode: 0755]