Skip to content

tobyjaffey/bus-ninja

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Bus Ninja

##Bus Ninja A Bus Pirate clone for Atmel AVR microcontrollers, including the Arduino and Teensy. Featuring a serial console, I2C, SPI and more. On the USB enabled AVRs (AT90USBxxxx and ATMEGAxxUx) USB over serial is used, allowing for single chip Bus Ninja hardware.

Bus Ninja lets you quickly protoype with I2C and SPI devices without writing any code. Just wire up a device to your board and start talking to it directly from the Bus Ninja console.

###Features

  • Interactive shell with Bus Pirate like syntax
  • I2C (soft i2c driver from userial)
  • I2C address scanner ('s' command from i2c mode)
  • SPI
  • Flow controlled USB CDC (serial) (AT90USBxxxx/ATMEGAxxUx only)
  • Modular software making it straightforward to add
  • New commands
  • New buses
  • New USB gadgets - mass storage EEPROM interface, HID devices, etc. (AT90USBxxxx/ATMEGAxxUx only)

###Commands ####help Print list of available commands

####version Print build string

####reset Reset board

####spi Enter SPI bus mode

####i2c Enter i2c bus mode

####led <0-6> Set LED pattern

###Wiring When connecting up I2C and SPI devices, signals should be connected the pins below. For Teensy, use the AT90USBxxxx variants.

FunctionArduino pinAT90USBxxxx/ATMEGAxxUx pin
I2C SDAAnalog 4 (PORTC4)PORTB2
I2C SCLAnalog 5 (PORTC5)PORTB1
SPI CLKDigital 13 (PORTB5)PORTB1
SPI MISODigital 12 (PORTB4)PORTB3
SPI MOSIDigital 11 (PORTB3)PORTB2
SPI CSDigital 9 (PORTB1)PORTB4
LEDDigital 2 (PORTD2)PORTD4

###Bus commands Once a bus mode is selected (i2c/spi), bus commands can be sent. See the Bus Pirate manuals for more details

Eg.

> spi
> [0x40 0x0A 0x28]
CS ENABLED
WRITE: 0x40
WRITE: 0x0A
WRITE: 0x28
CS DISABLED

(see also the command examples in the test/ directory)

###Arduino Examples

####Controlling an LED To prove that the Bus Ninja software is working on your Arduino, start by controlling an LED. Connect the anode of your LED to digital pin 2 and the cathode to ground (it would be wise to also add a current limiting resistor in series, say 220R).

Connect to the Arduino's serial port with your favourite terminal emulator at 8-N-1 9600bps.

screen /dev/ttyUSB0 9600

Type led followed by an integer from 0-6 to set the LED fade pattern.

####Controlling a Microchip MCP23S17 SPI 16-bit I/O expander Wire the chip to the Arduino like this:

MCP23S17Arduino
VDD5V
VSSGND
SOSPI MISO (Digital 12)
SISPI MOSI (Digital 11)
CSSPI CS (Digital 9)
SCKSPI CLK (Digital 13)
Reset5V

Connect an LED, voltmeter or oscilloscope to GPA0. Then, open the Bus Ninja serial console and enter commands.

Enter SPI mode spi

Initialise the chip for non-sequential access [0x40 0x0A 0x28] # WR_REG(0) IOCONA SEQ_OFF|HAEN

Set all of PORTA as outputs [0x40 0x00 0x00] # WR_REG(0) GPIOADIR ALL_OUTPUT

Set GPIOA-0 high [0x40 0x12 0x01] # WR_REG(0) GPIOA GPIOA-0

Set GPIOA-0 low [0x40 0x12 0x00] # WR_REG(0) GPIOA GPIOA-0

####Controlling a Microchip 24LC16B I2C EEPROM Wire the chip to the Arduino like this:

24LC16BArduino
VCC5V
VSSGND
SDAI2C SDA (Analog 4)
SII2C SCL (Analog 5)
Reset5V

For I2C to properly function you must add two pullup resistors. One from SDA to 5V, one from SCL to 5V.

Enter I2C mode i2c

Write {0x10, 0x20, 0x30, 0x40} at address 0x0000 [0xA6 0 0 0x10 0x20 0x30 0x40]

Set the read pointer to address 0x0000 [0xA6 0 0]

Read back your 4 bytes [0xA7 r:4]

###Building the code Edit config.mk and change PROGRAM_CMD for your system.

To build and flash to Arduino Diecemilia (atmega168): cd src && make BOARD=ARDUINO clean && make BOARD=ARDUINO && make BOARD=ARDUINO program

To build for Teensy 1.0 (at90usb162): cd src && make BOARD=TEENSY clean && make BOARD=TEENSY && make BOARD=TEENSY program

###FAQ

Q. Why is it called Bus Ninja? A. Because Ninjas are better than Pirates and Yarrrrrduino sounds silly.

Q. What hardware does Bus Ninja run on? A. It was originally developed on Teensy1 (AT90USB162), then later ported to Arduino (ATMega168). Adding support for other AVRs should just be a matter of changing the definitions in config.mk.

Q. Why do I lose characters when I paste to the Arduino? A. The Arduino serial port isn't flow controlled, use the USB version of Bus Ninja

Q. How do I port Bus Ninja to my custom AVR/Arduino board? A. Edit config.mk, setup FCPU, MCU, LED PORT/PIN and desired features.

Q. Why aren't you using LUFA's scheduler/task framework? A. Bus Ninja needs to remain portable to other stacks and processors, so it doesn't use LUFA's application framework.

Q. How do I add a new command? A. Use the macros DECLARE_COMMAND(mycmd), ADD_COMMAND(mycmd) and DEFINE_COMMAND(mycmd) in global_commands.c

Q. How do I add a new bus? A. Declare a bus_interface_t, provide handlers for the methods, enable it with bus_init(&my_bus). See bus_spi.[ch]. The buses are enabled by a command in global_commands.c

Q. How do I disable a feature? A. Edit config.mk, comment out unused features.

Q. Why isn't the LED command hooked up to the on-board LED on Arduino? A. The LED is on the SPI CLK line, so is needed for SPI.

Q. Why clone the Bus Pirate? A. To get to a single chip Bus Pirate work-a-like with a free software toolchain.

###License and acknowledgements Unless otherwise stated, everything is licensed under CC-0.

Bus Ninja also contains code from: LUFA (Dean Camera) userial (Thomas Pircher) estick-jtag/opendous-jtag (Cahya Wirawan, Vladimir Fonov, Dean Camera, Denver Gingerich)

Although Bus Ninja shares no code with the Bus Pirate project, it wouldn't exist without it. Thank you.