demo sample to drive PCU9955 and PCA9629

Dependencies:   mbed I2C_slaves PCU9669 parallel_bus

Fork of mini_board_PCU9669 by InetrfaceProducts NXP

What is this?

This is a sample code to operate PCU9955 (16ch constant-current LED controller) and PCA9629 (intelligent stepper motor controller) through PCU9669 (3 channels (UltraFast mode * 2ch, FastModePlus *1ch) I2C bus controller).

This demo is written based on mini_board_PCU9669 sample code library and its API.
http://mbed.org/users/nxp_ip/code/mini_board_PCU9669/

Demo will shows how the LED controllers and stepper motor controllers works.
It uses a mini_board_PCU9669 board with mbed, 8 of PCU9955s and 5 PCA9629s.

/media/uploads/nxp_ip/dsc_0414ss.png
Demo setup
(left-top: PCU9955 boards, left-bottom: mini-board PCU9669 with mbed, right: PCA9629 x5 board)

/media/uploads/nxp_ip/demo-config-ss.png
Board connections and device addresses

Reference:

User manual of PCU9669 demo board: Mini board PCU9669

http://www.nxp.com/documents/user_manual/UM10580.pdf

sample code : mbed programs

Import programmini_board_PCU9669

mini board PCU9669 (and PCA9665) sample code

Import programPCA9955_Hello

PCA9955 16 channel current drive(sink) LED driver sample code

Import programPCA9955_simple

very simple sample code for PCA9955 (16 channel current control LED driver)

Import programPCA9629_Hello

Sample code for PCA9629 operation

device infomation

PCU9669 (Parallel bus to 1 channel Fm+ and 2 channel UFm I2C-bus controller)
PCU9955 (16-channel UFm I²C-bus 57 mA constant current LED driver)
PCA9955 (16-channel Fm+ I²C-bus 57 mA constant current LED driver)
PCU9629 (Fm+ I2C-bus stepper motor controller)

Revision:
20:a266fa588bd8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PCA9629_reg.h	Fri Oct 26 05:59:55 2012 +0000
@@ -0,0 +1,52 @@
+/*  A sample code for PCU9669 (and its family) operation sample
+ *
+ *  @author  Tedd OKANO, NXP Semiconductors
+ *  @version 0.5
+ *  @date    13-Oct-2011
+ *
+ *  Released under the MIT License: http://mbed.org/license/mit
+ *
+ *    An operation sample of PCU9669 I2C bus controller. 
+ *  The mbed accesses the PCU9669's parallel port (8 bit address and 8 bit data) using bit-banging. 
+ *  The bit-banging is poerformed by PortInOut function of mbed library. 
+ *
+ *    To make the code porting easier, all codes are partitioned into layers to abstract other parts. 
+ *    The mbed specific parts are concentrated in lowest layer: "hardware_abs.*". 
+ *    This module may need to be modified when porting. 
+ *
+ *    All other upper layers are writen in standard-C. 
+ *
+ *    base code is written from 05-Sep-2011 to 09-Sep-2011.
+ *    And demo code has been build on 11-Sep-2011. 
+ *    Debug and code adjustment has been done on 08-Sep-2011. 
+ *    Small sanitization for main.cpp. All mbed related codes are moved in to "hardware_abs.*". 13-Oct-2011
+ */
+
+/** PCA9629 related definitions
+ *  
+ *  This header file was intended to define the PCA9629 registers but those details are not required in this application. 
+ *  So this file only have I2C addresses definitions
+ */
+
+#ifndef __PCA9629_REG__
+#define __PCA9629_REG__
+
+/** @var PCA9629 I2C bus addresses
+ */
+
+typedef enum {
+    MOT_ADDR0   = 0x40,
+    MOT_ADDR1   = 0x42,
+    MOT_ADDR2   = 0x44,
+    MOT_ADDR3   = 0x46,
+    MOT_ADDR4   = 0x48,
+    MOT_ADDR5   = 0x4A,
+    MOT_ADDR6   = 0x4C,
+    MOT_ADDR7   = 0x4E,
+    MOT_ADDR8   = 0x50,
+    MOT_ADDR9   = 0x52
+}
+pca9629_addr;
+
+
+#endif  //  __PCA9629_REG__