Skip to content

A standard API for controlling the Reflex Hand without ROS. More info at www.righthandrobotics.com.

Notifications You must be signed in to change notification settings

RightHandRobotics/reflex-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

reflex-api

Firmware, and Software for the Reflex Hand controller. The software is organized into the following directories.

  1. firmware -- Contains the firmware for the hands (Reflex Takktile)
  2. reflex-takktile-api -- Contains networking and driver code to control the Reflex Takktile hand

This code does not require the use of ROS.

Flashing firmware

First, you need to get the cross-compiler (gcc-arm) and build OpenOCD, the JTAG transport, and the DFU (Device Firmware Updater) utility. On Ubuntu 12.04 and 14.04 (and potentially others), this is all scripted for you:

cd firmware/tools
make
make dfu

Now you can build the firmware image:

cd firmware/reflex-takktile
make clean
make

That will produce a flash image in the firmware/reflex-takktile/bin directory. To program the microcontroller's flash memory with this image, we can use the microcontroller's built-in ROM bootloader, which will let us connect to the chip directly over USB and program its flash. The STM32F4 processor chooses whether it should boot to the ROM bootloader or the flash-memory program based on whether it's BOOT pin is high or low when its RESET line is released. On the controller board, you will find two buttons. The one nearest the corner of the board is connected to RESET. The one a little further from the corner is the BOOT select line. The neat thing about this setup is that it's impossible to "brick" the chip, even without a JTAG dongle: you can always put the chip back in bootloader mode and re-image it. To do this, follow these steps:

  1. push and hold the RESET button (the one nearest the corner)
  2. push and hold the BOOT button (the other button)
  3. release the RESET button (the one nearest the corner)
  4. release the BOOT button (the other button)

The LEDs on the controller board will stay dark, and if you have connected your machine to the controller board with a micro-USB cable, you will see that a new USB device has appeared on your system, with VID/PID 0483:df11. You can then issue this command to program the flash image:

make dfu_download

Then, just press and release the RESET button, and the controller will start executing the application flash image. Hooray!