| Commit message (Expand) | Author | Age | Files | Lines |
* | hwaccess: move x86 port I/O related code into own files | Thomas Heijligen | 2021-12-22 | 1 | -1/+1 |
* | pci.h: move include into own wrapper | Thomas Heijligen | 2021-12-22 | 1 | -0/+1 |
* | remove compile guards | Thomas Heijligen | 2021-09-26 | 1 | -6/+0 |
* | par_master: Use new API to register shutdown function | Anastasia Klimchuk | 2021-08-30 | 1 | -7/+2 |
* | par_master: Move shutdown function above par_master struct | Anastasia Klimchuk | 2021-08-30 | 1 | -11/+11 |
* | programmer_table: move each entry to the associated programmer source | Thomas Heijligen | 2021-06-10 | 1 | -2/+12 |
* | nic3com.c: Refactor singleton states into reentrant pattern | Anastasia Klimchuk | 2021-06-09# MCU name
#MCU = at90usb1286
MCU = atmega32u4
# Processor frequency.
# This will define a symbol, F_CPU, in all source code files equal to the
# processor frequency in Hz. You can then use this symbol in your source code to
# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
# automatically to create a 32-bit value in your source code.
#
# This will be an integer division of F_USB below, as it is sourced by
# F_USB after it has run through any CPU prescalers. Note that this value
# does not *change* the processor frequency - it should merely be updated to
# reflect the processor speed set externally so that the code can use accurate
# software delays.
F_CPU = 16000000
#
# LUFA specific
#
# Target architecture (see library "Board Types" documentation).
ARCH = AVR8
# Input clock frequency.
# This will define a symbol, F_USB, in all source code files equal to the
# input clock frequency (before any prescaling is performed) in Hz. This value may
# differ from F_CPU if prescaling is used on the latter, and is required as the
# raw input clock is fed directly to the PLL sections of the AVR for high speed
# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
# at the end, this will be done automatically to create a 32-bit value in your
# source code.
#
# If no clock division is performed on the input clock inside the AVR (via the
# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
F_USB = $(F_CPU)
# Interrupt driven control endpoint task(+60)
OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
# Boot Section Size in *bytes*
# Teensy halfKay 512
# Teensy++ halfKay 1024
# Atmel DFU loader 4096
# LUFA bootloader 4096
# USBaspLoader 2048
aniel Hailfinger | 2010-05-30 | 1 | -2/+0 |
* | Handle the following architectures in generic flashrom code | Carl-Daniel Hailfinger | 2010-05-26 | 1 | -0/+6 |
* | Replace PCI_OK/PCI_NT by OK/NT | Michael Karcher | 2010-02-24 | 1 | -10/+10 |
* | Add support for parallel flash on Dr. Kaiser PC-Waechter PCI devices | TURBO J | 2009-09-02 | 1 | -1/+2 |
* | "3COM 3C90xB: PCI 10BASE-T (TPO)" (10b7:9004) works fine | Carl-Daniel Hailfinger | 2009-08-24 | 1 | -1/+1 |
* | Use a common parameter variable for all programmers | Carl-Daniel Hailfinger | 2009-08-12 | 1 | -2/+2 |
* | Releasing IO permissions was done by hand everywhere | Carl-Daniel Hailfinger | 2009-08-09 | 1 | -6/+1 |
* | Mark 3COM "3C905B: Cyclone 10/100/BNC" as fully tested | Uwe Hermann | 2009-06-02 | 1 | -1/+1 |
* | Add support for the 10b7:9058 3COM NIC (3C905B: Cyclone 10/100/BNC) | Maciej Pijanka | 2009-06-02 | 1 | -2/+3 |
* | Only probe for chips with compatible bus protocols | Carl-Daniel Hailfinger | 2009-06-01 | 1 | -0/+2 |
* | Documentation improvements and small code/whitespace fixes | Uwe Hermann | 2009-05-19 | 1 | -5/+1 |
* | Factor out fallback_map/unmap, most external programmers don't need and speci... | Uwe Hermann | 2009-05-17 | 1 | -9/+0 |
* | Add proper workaround for 3COM 3C90xB cards, which need special fixups (the 3... | Uwe Hermann | 2009-05-16 | 1 | -1/+25 |
* | Introduce a type "chipaddr" to abstract the offsets within flash regions | Carl-Daniel Hailfinger | 2009-05-16 | 1 | -4/+4 |
* | Add generic 16 bit and 32 bit chip read/write emulation to the external flash... | Carl-Daniel Hailfinger | 2009-05-16 | 1 | -18/+0 |
* | Refactor parts of the 3COM NIC code | Uwe Hermann | 2009-05-15 | 1 | -88/+12 |
* | Make the nic3com code check how many supported NICs are found | Uwe Hermann | 2009-05-14 | 1 | -17/+24 |
* | Fix compilation of nic3com on 64bit | Carl-Daniel Hailfinger | 2009-05-14 | 1 | -2/+2 |
* | Unify usage of iopl-like code by introducing get_io_perms() | Uwe Hermann | 2009-05-14 | 1 | -15/+4 |
* | nic3com: allow selection of a particular PCI device to use as programmer | Christian Ruppert | 2009-05-14 | 1 | -21/+47 |
* | Fix nic3com.c build issues on *BSD | Uwe Hermann | 2009-05-13 | 1 | -1/+7 |
* | Add support for 3COM NICs as "external programmer" and Atmel AT49BV512 | Uwe Hermann | 2009-05-13 | 1 | -0/+170 |