-
Notifications
You must be signed in to change notification settings - Fork 0
stev47/brickemu
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
brickemu -- Copyright (c) 2003 Jochen Hoenicke This is an emulator for a LEGO RCX brick. It emulates processor and peripherals, so it runs the original ROM code, firmware and programs. In principal it should work with any firmware, but I only tested brickOS. It also has some special features that only works when brickOS is installed. It is still in an early state, so forgive the bad documentation. Quick install instruction ------------------------- You need the ROM image from your RCX brick. Put this image into a file named rom.srec in SREC format. You can get a program that extracts the image from http://www.crynwr.com/lego-robotics/rom-image.html cd brickemu make ./ir-server ./emu You can set BRICKEMU_DIR if you want to start emu from another directory. There are two possibilities to download firmware and programs. The easy way is to choose "Firmware..." and "Load Program..." from the menu. Make sure that the rcx is turned on before loading firmware, otherwise it will just fail silently. With "Firmware..." you can load either coff or srec files. I recommend to use coff files as these come with symbolic information, which is used by brickemu to determine the location of memory, program and thread data structures. The "Load Program..." and the various "Dump" menu entries will only work if you loaded a brickOS firmware from the coff file. You can simply "make brickOS.coff" in the brickos/boot directory. IR support ---------- The emulated bricks support IR communications and if you start several instances they can send each other messages. You can also inject messages yourself by connecting to port 50637. All data is sent as raw bytes and repeated to every one who is connected to this port (including the sender). This emulates the broadcasting nature of infra red. You can also download the program and firmware via IR with the standard brickOS utitilies . You need to patch the utilities so they can also write to a network socket instead of the serial port. The patches are included in the archive (see download section). tar -xvzf brickemu.tar.gz cd brickos patch -p0 < ../brickemu/*.diff make Then you just download the firmware and program as you do it on your real RCX, only the tty needs to be changed. cd brickos util/firmdl3 --tty=ncd:localhost:50637 boot/brickOS.srec util/dll --tty=ncd:localhost:50637 demo/helloworld.lx This will download the firmware via TCP/IP and emulated infrared controller (this is what ir-server was good for). Since the emulator runs in real time this will take a while. To debug: --------- Download and compile gdb with --target=h8300-hitachi-hms When the emulator detects illegal memory access it will wait for a debugger to connect. You can also force entering debugging mode by pressing Ctrl + Backslash in the xterm where you started "emu" or you can start the emulator with "./emu -d". When it waits for the debugger you can start it in another window like this: cd brickos/boot make brickOS.coff h8300-hitachi-hms-gdb brickOS.coff (gdb) target remote localhost:6789 TODO: - better sensor input/motor output - fix all bugs :) - load/save functionality - support for other Operating Systems (anyone tried this with cygwin?) - support for other Firmware - better debugging support especially for the downloaded files.
About
brickemu is an emulator for LEGO MindStorms RCX bricks.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published