Arduino-USB-HID-RetroJoysti.../C64_joystick_atmelstudio/README.md

74 lines
2.7 KiB
Markdown
Raw Permalink Normal View History

2019-02-14 02:44:52 -05:00
## Very simple 2 button single Atari-joystick adapter for Arduino Pro Micro (ATmega32U4). Made with Atmel Studio 7 and Lufa.
2019-02-13 16:19:48 -05:00
## Building
2019-02-13 16:58:38 -05:00
- 9-pin D-connector -> Arduino Pro Micro
2019-02-13 16:19:48 -05:00
- UP(1) -> 10(PB6)
- DOWN(2) -> 16(PB2)
- LEFT(3) -> 14(PB3)
- RIGHT(4) -> 15(PB1)
- BTN1(6) -> 9(PB5)
2019-02-13 17:00:31 -05:00
- BTN2(C64/SMS:9, MSX:7) -> 8(PB4) (optional)
2019-02-13 16:58:12 -05:00
- GND(8) -> GND
2019-02-13 16:19:48 -05:00
2019-02-13 16:13:27 -05:00
## Firmware/flashing
2019-02-13 16:59:25 -05:00
- Install Arduino IDE for avrdude: https://www.arduino.cc/en/main/software
2019-02-13 16:13:27 -05:00
- Download firmware: https://github.com/mcgurk/Arduino-USB-HID-RetroJoystickAdapter/raw/master/C64_joystick_atmelstudio/CLASS_JOYSTICK1.hex
- Connect RST to GND couple of times to get Arduino Pro Micro to programming mode (notice that com-port is different in programming mode in Windows)
2019-02-13 17:01:13 -05:00
- Flash firmware:
2019-02-13 16:13:27 -05:00
```
& "C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avrdude" -C"C:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf" -v -p m32u4 -c avr109 -P COM5 -b 57600 -U flash:w:CLASS_JOYSTICK1.hex:i
```
## Muistiinpanoja
2019-02-13 16:11:06 -05:00
```
13.2.2019:
Tools->Extensions and Updates...->Lufa
Lufa->New Example Project->FourWalledCubicle - Dean Camera->Joystick HID Device Demo (Class Driver APIs) - AVR8 Architecture
Project->Properties->Change Device...->ATmega32U4 (rutkuttaa jotain, mutta suostuu silti)
Tools->External tools
Title:
Arduino_via_bootloader
command:
C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avrdude.exe
Arguments:
-C"C:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf" -v -patmega32u4 -cavr109 -PCOM5 -b57600 -D -Uflash:w:"$(BinDir)\$(TargetName).hex":i
Use Output window
Pari kertaa GND->RST, sitten Tools->Arduino_via_bootloader
C:\Users\lehti\Documents\Atmel Studio\7.0\CLASS_JOYSTICK1\CLASS_JOYSTICK1\Debug\CLASS_JOYSTICK1.hex
Tulee "LUFA Joystick Demo", 2 nappia ja kolme axista (X,Y,Z).
Näkyy Device managerissa "HID-compliant game controller".
0x03EB, 0x2043, Atmel Corp., LUFA Joystick Demo Application.
VID/PID ja "LUFA Joystick Demo": Descriptors.c
suuntien ja nappien määrä ehkä structissa: Joystick.h
Ja myös: src/LUFA/Drivers/USB/Class/Common/HIDClassCommon.h (HID_DESCRIPTOR_JOYSTICK)
Pois: HID_RI_USAGE(8, 0x32)
Muokkaa: HID_RI_REPORT_COUNT(8, 3) -> 2
Koodi: Joystick.c
GitHub-integraation vois tehdä external tools:lla.
PB6,2,3,1
PB5,4
```
## Joystick.c
2019-02-13 16:13:54 -05:00
SetupHardware (before USB_INIT):
2019-02-13 16:11:06 -05:00
```
2019-02-13 16:35:09 -05:00
DDRB = 0x00; //PB0-7 -> input
PORTB = 0xff; //PB0-7 -> pullup
2019-02-13 16:11:06 -05:00
```
CALLBACK_HID_Device_CreateHIDReport (before report size):
```
if (!(in & (1 << 6))) JoystickReport->Y = -100;
if (!(in & (1 << 2))) JoystickReport->Y = 100;
if (!(in & (1 << 3))) JoystickReport->X = -100;
if (!(in & (1 << 1))) JoystickReport->X = 100;
if (!(in & (1 << 5))) JoystickReport->Button |= (1 << 0);
if (!(in & (1 << 4))) JoystickReport->Button |= (1 << 1);
```