This package contains a simple test of tests for various elements of the SmartBoard hardware, which is a simple baseboard designed for easy embedding. It is able to run both a semi-automatic test suite as well as allow interactive testing.

Dependencies:   EthernetNetIf NTPClient_NetServices mbed

This program is most of what you need to test your SmartBoard baseboard hardware. It provides a means to test the following:

  • Two channels of CAN (with a loopback cable)
  • RS-232 Ports
  • Analog inputs
  • PWM outputs
  • Ethernet port
  • Real time clock
  • micro SD
  • USB Host port

USBHostLite/usbhost_cpu.h

Committer:
WiredHome
Date:
2011-03-31
Revision:
4:ca93a8d4874d

File content as of revision 4:ca93a8d4874d:

/*
**************************************************************************************************************
*                                                 NXP USB Host Stack
*
*                                     (c) Copyright 2008, NXP SemiConductors
*                                     (c) Copyright 2008, OnChip  Technologies LLC
*                                                 All Rights Reserved
*
*                                                  www.nxp.com
*                                               www.onchiptech.com
*
* File           : usbhost_cpu.h
* Programmer(s)  : Ravikanth.P
* Version        :
*
**************************************************************************************************************
*/

#ifndef  USBHOST_CPU_H
#define  USBHOST_CPU_H

/*
**************************************************************************************************************
*                                           TYPE DEFINITIONS OF DATA TYPES
**************************************************************************************************************
*/

typedef  unsigned int    USB_INT32U;
typedef  signed   int    USB_INT32S;
typedef  unsigned short  USB_INT16U;
typedef  signed   short  USB_INT16S;
typedef  unsigned char   USB_INT08U;
typedef  signed   char   USB_INT08S;

#endif