[posted] The Guild of Thieves on a Teensy 4.0

dettus

Member
guild_teensy.png

https://www.dettus.net/dMagnetic/teensy/guild001.elf

Hello Guys!
I just ported "The Guild of Thieves" to the Teensy 4.0 ;)

Want to give it a try?
 
love to try this as well, what sort of terminal emulator do you need for windows and how do you get it to actually run?
 
In theory, I would say "putty is a good terminal emulator under Windows", but for some reason it keeps me stuck at the "Please press Enter" message...
However, the connection should be set to 115200,8N1, No flow control.


Anyhow, under Linux, the command for uploading the .elf to the teensy is

Code:
$ARDUINOPATH/hardware/tools/arm/bin/arm-none-eabi-objcopy -O ihex -R $ARDUINOPATH/.eeprom guild001.elf guild001.hex
$ARDUINOPATH/hardware/tools/teensy_post_compile -file=guild001 -path=`pwd` -tools=$ARDUINOPATH/hardware/tools
$ARDUINOPATH/hardware/tools/teensy_reboot

and to play the game
Code:
% sudo apt install cu
% cu -l /dev/ttyACM0 -s 115200 --no-stop
 
lol - I'm a windows guy, and was getting stuck at the same place even with the same connection details. Thanks for trying!
 
Back
Top