https://github.com/Dhole/gb-link-host
Game Boy link host program
https://github.com/Dhole/gb-link-host
Last synced: about 1 month ago
JSON representation
Game Boy link host program
- Host: GitHub
- URL: https://github.com/Dhole/gb-link-host
- Owner: Dhole
- License: bsd-3-clause
- Created: 2017-10-21T05:15:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-19T23:30:20.000Z (about 7 years ago)
- Last Synced: 2023-03-22T22:47:41.888Z (about 2 years ago)
- Language: Rust
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-game-boy-camera-and-game-boy-printer-projects - using an STM32F4
README
# Game Boy Link communication, host side
This is the host side of a project that allows communication between a physical Game Boy Game Link Cable and a computer.
Three functionalities are implemented:
- Sniffing the serial communication
- Virtual Game Boy Printer that stores the images as PNG files
- Printing directly to the Game Boy Printer (no Game Boy needed)The code is written in Rust.
## Details
You can read the complete details of this project in my blog posts:
- [Sniffing Game Boy serial traffic with an STM32F4](https://dhole.github.io/post/gameboy_serial_1/)
- [Virtual Game Boy Printer with an STM32F4](https://dhole.github.io/post/gameboy_serial_2/)
- [Printing on the Game Boy Printer using an STM32F4](https://dhole.github.io/post/gameboy_serial_3/)## Usage
```
USAGE:
gb-link [OPTIONS]FLAGS:
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
-b, --baud Set the baud rate [default: 1000000]
-d, --board Set the development board: generic, st [default: st]
-f, --file Image file to print
-m, --mode Set the device mode: sniff, printer, print [default: sniff]
-s, --serial Set the serial device [default: /dev/ttyACM0]
```## License
The code is released under the 3-clause BSD License.