Changeset 88a38a8 in avrstuff for kbd/pcw2hid/code/makefile


Ignore:
Timestamp:
Feb 7, 2023, 11:43:54 PM (16 months ago)
Author:
PulkoMandy <pulkomandy@…>
Branches:
main
Children:
53cf5f5
Parents:
8d96947
Message:

pcw2hid: first working version

Remaining problem: ESC seems to be pressed with alt and shift, I don't
see why. Probqbly should have a key acting as numlock, otherwise there's
no way to have cursor keys...

This message is typed with a PCW keyboard :D

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kbd/pcw2hid/code/makefile

    r8d96947 r88a38a8  
    1212# Run "make help" for target help.
    1313
    14 MCU          = at90usb162
     14#MCU          = at90usb162
     15MCU          = at90usb1287
    1516ARCH         = AVR8
    1617BOARD        =
    1718F_CPU        = 8000000
    1819F_USB        = $(F_CPU)
    19 OPTIMIZATION = s
     20OPTIMIZATION = 3
    2021TARGET       = Keyboard
    2122SRC          = $(TARGET).c Descriptors.c protocol.cpp $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS)
     
    4344include $(DMBS_PATH)/atprogram.mk
    4445
    45 PROG=usbasp
     46#PROG=usbasp
     47PROG=avr109 -P /dev/ports/usb0
    4648flash: $(TARGET).hex
    4749        avrdude -u -c $(PROG) -p $(MCU) -Uflash:w:$^
Note: See TracChangeset for help on using the changeset viewer.