It's no longer UDP by default
parent
30f3a23bc6
commit
70a640f9fc
110
README.md
110
README.md
|
@ -1,56 +1,56 @@
|
||||||
# chuniio-brokenithm
|
# chuniio-brokenithm
|
||||||
|
|
||||||
ChuniIO/AimeIO driver for [Brokenithm-Android](https://github.com/tindy2013/Brokenithm-Android) and
|
ChuniIO/AimeIO driver for [Brokenithm-Android](https://github.com/tindy2013/Brokenithm-Android) and
|
||||||
[Brokenithm-iOS](https://github.com/esterTion/Brokenithm-iOS)
|
[Brokenithm-iOS](https://github.com/esterTion/Brokenithm-iOS)
|
||||||
without needing an external server.
|
without needing an external server.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
segatools.ini
|
segatools.ini
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[aimeio]
|
[aimeio]
|
||||||
path64=aimeio_brokenithm.dll
|
path64=aimeio_brokenithm.dll
|
||||||
|
|
||||||
[chuniio]
|
[chuniio]
|
||||||
path32=chuniio_brokenithm_x86.dll
|
path32=chuniio_brokenithm_x86.dll
|
||||||
path64=chuniio_brokenithm_x64.dll
|
path64=chuniio_brokenithm_x64.dll
|
||||||
|
|
||||||
[io3]
|
[io3]
|
||||||
; Test button virtual-key code. Default is the 1 key.
|
; Test button virtual-key code. Default is the 1 key.
|
||||||
test=0x31
|
test=0x31
|
||||||
; Service button virtual-key code. Default is the 2 key.
|
; Service button virtual-key code. Default is the 2 key.
|
||||||
service=0x32
|
service=0x32
|
||||||
; Keyboard button to increment coin counter. Default is the 3 key.
|
; Keyboard button to increment coin counter. Default is the 3 key.
|
||||||
coin=0x33
|
coin=0x33
|
||||||
; AIR sensor emulator. Default is the space key.
|
; AIR sensor emulator. Default is the space key.
|
||||||
; If using individual-ray IR (see below), set this value to 0.
|
; If using individual-ray IR (see below), set this value to 0.
|
||||||
ir=0x20
|
ir=0x20
|
||||||
|
|
||||||
[brokenithm]
|
[brokenithm]
|
||||||
; Use TCP instead of UDP for connections (default UDP)
|
; Use TCP instead of UDP for connections (default TCP)
|
||||||
tcp=1
|
tcp=1
|
||||||
|
|
||||||
; Port to accept connections on (default 52468)
|
; Port to accept connections on (default 52468)
|
||||||
port=52468
|
port=52468
|
||||||
```
|
```
|
||||||
|
|
||||||
## Build instructions
|
## Build instructions
|
||||||
```shell
|
```shell
|
||||||
# In MinGW32
|
# In MinGW32
|
||||||
pacman -S mingw-w64-i686-libimobiledevice
|
pacman -S mingw-w64-i686-libimobiledevice
|
||||||
|
|
||||||
mkdir -p build/build32
|
mkdir -p build/build32
|
||||||
cd build/build32
|
cd build/build32
|
||||||
cmake ../..
|
cmake ../..
|
||||||
ninja
|
ninja
|
||||||
|
|
||||||
# In MinGW64
|
# In MinGW64
|
||||||
mkdir -p build/build64
|
mkdir -p build/build64
|
||||||
cd build/build64
|
cd build/build64
|
||||||
cmake ../..
|
cmake ../..
|
||||||
ninja
|
ninja
|
||||||
|
|
||||||
ls build/build32/chuniio/chuniio_brokenithm.dll
|
ls build/build32/chuniio/chuniio_brokenithm.dll
|
||||||
ls build/build64/chuniio/chuniio_brokenithm.dll
|
ls build/build64/chuniio/chuniio_brokenithm.dll
|
||||||
ls build/build64/aimeio/aimeio_brokenithm.dll
|
ls build/build64/aimeio/aimeio_brokenithm.dll
|
||||||
```
|
```
|
Loading…
Reference in New Issue